From: Matthias Maier Date: Fri, 5 Aug 2016 15:19:50 +0000 (-0500) Subject: CMake: Bugfix: Do not set up python component for boost X-Git-Tag: v8.5.0-rc1~801^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d975d49f54e4403fc6af10fe1ae50dc98f150ef3;p=dealii.git CMake: Bugfix: Do not set up python component for boost --- diff --git a/cmake/modules/FindBOOST.cmake b/cmake/modules/FindBOOST.cmake index b8a08bf3b3..862d49fa12 100644 --- a/cmake/modules/FindBOOST.cmake +++ b/cmake/modules/FindBOOST.cmake @@ -43,12 +43,8 @@ ENDIF() # temporarily disable ${CMAKE_SOURCE_DIR}/cmake/modules for module lookup LIST(REMOVE_ITEM CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules/) -SET(_boost_python "") -IF(DEAL_II_COMPONENT_PYTHON_BINDINGS) - SET(_boost_python "python") -ENDIF() FIND_PACKAGE(Boost 1.54 COMPONENTS - iostreams serialization system thread ${_boost_python} + iostreams serialization system thread ) LIST(APPEND CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules/)