Allow building zlib and libsbml at the same time.#474
Open
luciansmith wants to merge 1 commit intodevelopmentfrom
Open
Allow building zlib and libsbml at the same time.#474luciansmith wants to merge 1 commit intodevelopmentfrom
luciansmith wants to merge 1 commit intodevelopmentfrom
Conversation
The check_library_exists function breaks my build when building both zlib and libsbml at once. I get the error:
CMake Error at C:/Users/Lucian/Desktop/libroadrunner-deps-backup/build-debug/CMakeFiles/CMakeScratch/TryCompile-m25yy5/CMakeLists.txt:28 (target_link_libraries):
Error evaluating generator expression:
$<TARGET_LINKER_FILE:zlibstatic>
No target "zlibstatic"
If I then hit compile again, it works! But the first time, it fails, and it needs to work the first time for my github action.
This problem was obfuscated by it previously trying to assign the result to LIBZ_CMAKE_PATH, which already existed, so it... broke the check? Maybe? Anyway.
I don't think we need to check that the library exists anyway. We don't do it for any of the XML libraries, and only do it for BZip. Which would probably also break my build, but I'm not including bzip in my build at all.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The check_library_exists function breaks my build when building both zlib and libsbml at once. I get the error:
CMake Error at C:/Users/Lucian/Desktop/libroadrunner-deps-backup/build-debug/CMakeFiles/CMakeScratch/TryCompile-m25yy5/CMakeLists.txt:28 (target_link_libraries):
Error evaluating generator expression:
No target "zlibstatic"
If I then hit compile again, it works! But the first time, it fails, and it needs to work the first time for my github action.
This problem was obfuscated by it previously trying to assign the result to LIBZ_CMAKE_PATH, which already existed, so it... broke the check? Maybe? Anyway.
I don't think we need to check that the library exists anyway. We don't do it for any of the XML libraries, and only do it for BZip. Which would probably also break my build, but I'm not including bzip in my build at all.