-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCMakeLists.txt
72 lines (57 loc) · 2.07 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
cmake_minimum_required(VERSION 2.8)
project(INDEX_PARTITIONING)
if(NOT CMAKE_BUILD_TYPE)
set(CMAKE_BUILD_TYPE "Release")
endif()
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Clang")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++")
endif ()
if (UNIX)
# C++11
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
# For hardware popcount
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -msse4.2")
# Extensive warnings
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Wno-missing-braces")
# Silence a warning bug in Boost
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-local-typedefs")
endif ()
# set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wconversion")
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -ggdb") # Add debug info anyway
endif()
find_package(Boost 1.42.0 COMPONENTS iostreams unit_test_framework REQUIRED)
include_directories(${Boost_INCLUDE_DIRS})
link_directories(${Boost_LIBRARY_DIRS})
# add the root directory to include path to make includes absolute
include_directories(${INDEX_PARTITIONING_SOURCE_DIR})
add_subdirectory(succinct EXCLUDE_FROM_ALL)
add_subdirectory(FastPFor EXCLUDE_FROM_ALL)
# bypass integer_encoding_library build system, only take what we need
include_directories(${INDEX_PARTITIONING_SOURCE_DIR}/integer_encoding_library/include)
add_library(block_codecs
block_codecs.cpp
integer_encoding_library/src/compress/table/decUnary.cpp
integer_encoding_library/src/compress/table/decGamma.cpp
integer_encoding_library/src/compress/table/decDelta.cpp
integer_encoding_library/src/io/BitsReader.cpp
integer_encoding_library/src/io/BitsWriter.cpp
)
add_executable(create_freq_index create_freq_index.cpp)
target_link_libraries(create_freq_index
${Boost_LIBRARIES}
FastPFor_lib
block_codecs
)
add_executable(create_wand_data create_wand_data.cpp)
target_link_libraries(create_wand_data
${Boost_LIBRARIES}
)
add_executable(queries queries.cpp)
target_link_libraries(queries
${Boost_LIBRARIES}
FastPFor_lib
block_codecs
)
enable_testing()
add_subdirectory(test)