We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In your cmakelists, even if boost not found, still unittest and sandbox will be built, which cause a problem.
# Boost serialization for performance sandbox find_package(Boost COMPONENTS serialization) if(Boost_FOUND) include_directories(SYSTEM ${Boost_INCLUDE_DIRS}) endif(Boost_FOUND) enable_testing() add_subdirectory(unittests) add_subdirectory(sandbox)
The text was updated successfully, but these errors were encountered:
The unit tests do not use boost, and the portions of sandbox that require boost are already guarded: https://github.com/USCiLab/cereal/blob/develop/sandbox/CMakeLists.txt
Sorry, something went wrong.
This should be fixed now in the sense that the boost unit test (variadic) is now behind Boost_FOUND. See #568
Boost_FOUND
No branches or pull requests
In your cmakelists, even if boost not found, still unittest and sandbox will be built, which cause a problem.
The text was updated successfully, but these errors were encountered: