We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df16c21 commit a68abe6Copy full SHA for a68abe6
cmake/ug_includes.cmake
@@ -467,9 +467,11 @@ if(INTERNAL_BOOST)
467
set(INTERNAL_BOOST_PATH ${UG_ROOT_PATH}/externals/BoostForUG4/)
468
set(BOOST_ROOT ${INTERNAL_BOOST_PATH})
469
set(Boost_INCLUDE_DIRS ${INTERNAL_BOOST_PATH})
470
- message(STATUS "Info: Internal Boost ${Boost_ADDITIONAL_VERSIONS}")
+ set(Boost_MAJOR_VERSION 1)
471
+ set(Boost_MINOR_VERSION 71)
472
+ message(STATUS "Info: Internal Boost ${Boost_MAJOR_VERSION}.${Boost_MINOR_VERSION}")
473
else(INTERNAL_BOOST)
- find_package(Boost 1.58 REQUIRED) # automatic detection
474
+ find_package(Boost 1.71 REQUIRED) # automatic detection
475
476
if(Boost_FOUND)
477
message(STATUS "Info: Found Boost ${Boost_VERSION} in <${Boost_INCLUDE_DIRS}>")
0 commit comments