Fix CMake file with missing boost libraries
[elliptics.git] / bindings / CMakeLists.txt
blob65994e6ff8a3d9a48d2b3d6b866868ef9ac9d813
1 # Check for boost
2 #set(Boost_USE_STATIC_LIBS ON)
3 #set(Boost_USE_STLPORT ON)
4 find_package(Boost REQUIRED COMPONENTS iostreams thread regex program_options system)
6 include_directories(${Boost_INCLUDE_DIRS})
8 add_subdirectory(cpp)
9 if(WITH_PYTHON)
10     add_subdirectory(python)
11 endif()