repo.or.cz
/
elliptics.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix CMake file with missing boost libraries
[elliptics.git]
/
bindings
/
CMakeLists.txt
blob
65994e6ff8a3d9a48d2b3d6b866868ef9ac9d813
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)
5
6
include_directories(${Boost_INCLUDE_DIRS})
7
8
add_subdirectory(cpp)
9
if(WITH_PYTHON)
10
add_subdirectory(python)
11
endif()