diff options
author | Josh Blum <josh@joshknows.com> | 2016-12-12 00:28:00 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2016-12-12 00:28:00 -0800 |
commit | 67f7306c9f7cee308e3df0b6197479f199e74aa9 (patch) | |
tree | e6bd42392abf465b48f2dfcebc9d80b795378321 /cmake | |
parent | 4713574c3d783ebac5ccb6e4c19b23764b41fbfb (diff) |
cmake: atomic and chrono for BOOST_REQUIRED_COMPONENTS
Conditional inclusion of atomic and chrono
so that they will be linked under windows,
but not bump the minimum boost for other platforms.
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/Modules/GrBoost.cmake | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/cmake/Modules/GrBoost.cmake b/cmake/Modules/GrBoost.cmake index 1cf8e65a11..39a78c5b86 100644 --- a/cmake/Modules/GrBoost.cmake +++ b/cmake/Modules/GrBoost.cmake @@ -39,9 +39,24 @@ if(UNIX AND NOT BOOST_ROOT AND EXISTS "/usr/lib64") list(APPEND BOOST_LIBRARYDIR "/usr/lib64") #fedora 64-bit fix endif(UNIX AND NOT BOOST_ROOT AND EXISTS "/usr/lib64") -if(MSVC) - set(BOOST_REQUIRED_COMPONENTS ${BOOST_REQUIRED_COMPONENTS} chrono) +if(WIN32) + #The following libraries are either used indirectly, + #or conditionally within the various core components. + #We explicitly list the libraries here because they + #are either required in environments MSVC and MINGW + #or linked-in automatically via header inclusion. + + #However, this is not robust; and its recommended that + #these libraries should be listed in the main components + #list once the minimum version of boost had been bumped + #to a version which always contains these components. + list(APPEND BOOST_REQUIRED_COMPONENTS + atomic + chrono + ) +endif(WIN32) +if(MSVC) if (NOT DEFINED BOOST_ALL_DYN_LINK) set(BOOST_ALL_DYN_LINK TRUE) endif() |