Forked from
Main Repositories / otb
16458 commits behind the upstream repository.
-
Manuel Grizonnet authoredManuel Grizonnet authored
otb-module-init.cmake 640 B
# Required
message(STATUS "Looking for required Boost headers")
find_package ( Boost
1.35.0
REQUIRED
)
# Optional components
# Boost (OPTIONAL_COMPONENTS does not work with Boost find_package)
# unit_test_framework component is used only in GdalAdapters module
if (BUILD_TESTING)
set(OTB_Boost_OPTIONAL_COMPONENTS unit_test_framework)
endif()
#Quiet find package to avoid message "Could not find boost" because unit_testing_framework is not installed
message(STATUS "Looking for optional Boost components : ${OTB_Boost_OPTIONAL_COMPONENTS}")
find_package ( Boost
QUIET
1.35.0
COMPONENTS ${OTB_Boost_OPTIONAL_COMPONENTS}
)