CMakeLists.txt - boost is now a required package

This commit is contained in:
Daniel Knibbe 2016-11-04 10:19:59 +01:00 committed by Daniel Knibbe
parent e8e5846bf2
commit 36885daf20

View file

@ -46,7 +46,7 @@ if(NOT TARGET boost)
if(NOT DEFINED BOOST_ROOT)
set(BOOST_ROOT "../boost") # reasonable default: boost is in a parallel directory
endif()
find_package(Boost)
find_package(Boost REQUIRED)
endif()
#
@ -587,5 +587,3 @@ if(BUILD_ARABICA_EXAMPLES)
set_target_properties(${EXAMPLE_NAME} PROPERTIES FOLDER "3rdparty/arabica_examples")
endif()