From: Brandon King Date: Wed, 18 Nov 2009 20:38:04 +0000 (-0800) Subject: Need boost system for Python build in Boost 1.40. X-Git-Url: http://woldlab.caltech.edu/gitweb/?p=mussa.git;a=commitdiff_plain;h=677399612a513c6e2fe86c23fe0ad2b40378e3a8 Need boost system for Python build in Boost 1.40. --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 994d4ca..6db7a97 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -23,8 +23,8 @@ INCLUDE( ${QT_USE_FILE} ) FIND_PACKAGE(OpenGL) set(Boost_USE_STATIC_LIBS ON) set(Boost_USE_MULTITHREADED ON) -FIND_PACKAGE(Boost 1.34.1 REQUIRED filesystem serialization system program_options ) -FIND_PACKAGE(Boost 1.34.1 COMPONENTS python) +FIND_PACKAGE(Boost 1.40 REQUIRED filesystem serialization system program_options ) +FIND_PACKAGE(Boost 1.40 COMPONENTS python) FIND_PACKAGE(PythonLibs) SET(USE_PYTHON 0 CACHE BOOL diff --git a/py/CMakeLists.txt b/py/CMakeLists.txt index 46e1943..0e08488 100644 --- a/py/CMakeLists.txt +++ b/py/CMakeLists.txt @@ -38,6 +38,7 @@ IF(Boost_PYTHON_LIBRARY) SET(MUSSA_LIBRARIES mussa_core ${Boost_PYTHON_LIBRARY} + ${Boost_SYSTEM_LIBRARY} ${Boost_FILESYSTEM_LIBRARY} ${Boost_SERIALIZATION_LIBRARY} ${OPENGL_gl_LIBRARY}