-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCMakeLists.txt
193 lines (173 loc) · 5.59 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
cmake_minimum_required(VERSION 2.8)
project(NVMleveldb CXX)
set(CMAKE_DEBUG_POSTFIX "d")
set(SNAPPY_LIBRARY "")
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
string(REGEX MATCH "clang" CLANG ${CMAKE_CXX_COMPILER})
if(CMAKE_COMPILER_IS_GNUCXX OR CLANG)
find_library(Pthread_LIBRARY pthread)
find_library(Realtime_LIBRARY rt)
# find library can be problematic with stdc++ which is why we hardwire the link
set(Stdcpp_LIBRARY stdc++)
else(CMAKE_COMPILER_IS_GNUCXX OR CLANG)
set(Pthread_LIBRARY "")
set(Realtime_LIBRARY "")
set(Stdcpp_LIBRARY "")
endif(CMAKE_COMPILER_IS_GNUCXX OR CLANG)
include_directories(${Boost_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}
include)
find_package(Numa REQUIRED)
include_directories(${NUMA_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}
include)
if(MSVC)
add_compile_options(
/D_CRT_SECURE_NO_WARNINGS
/wd4389 # signed/unsigned mismatch
/wd4800 # constructor never returns, potential memory leak because of a singleton pattern
/wd4722 # unreachable code because of singleton pattern
/wd4702 # bool cast performance warning
)
else()
add_compile_options(
-Wno-sign-compare
-std=c++11
-O2
)
endif()
add_definitions(-DLEVELDB_ATOMIC_PRESENT)
add_definitions(-DOS_LINUX)
add_definitions(-DLEVELDB_PLATFORM_POSIX)
add_definitions(-fno-builtin-memcmp)
set(LEVEL_DB_FILES
include/leveldb/c.h
include/leveldb/cache.h
include/leveldb/comparator.h
include/leveldb/db.h
include/leveldb/dumpfile.h
include/leveldb/env.h
include/leveldb/iterator.h
include/leveldb/filter_policy.h
include/leveldb/iterator.h
include/leveldb/options.h
include/leveldb/slice.h
include/leveldb/status.h
include/leveldb/table.h
include/leveldb/table_builder.h
include/leveldb/write_batch.h
include/leveldb/export.h
db/c.cc
db/builder.cc
db/builder.h
db/db_impl.cc
db/db_impl.h
db/db_iter.cc
db/db_iter.h
db/dbformat.cc
db/dbformat.h
db/dumpfile.cc
db/filename.cc
db/filename.h
db/log_format.h
db/log_reader.cc
db/log_reader.h
db/log_writer.cc
db/log_writer.h
db/skiplist.h
db/snapshot.h
db/memtable.cc
db/memtable.h
db/repair.cc
db/table_cache.cc
db/table_cache.h
db/version_edit.cc
db/version_edit.h
db/version_set.cc
db/version_set.h
db/write_batch.cc
table/block.cc
table/block.h
table/block_builder.cc
table/block_builder.h
table/filter_block.cc
table/filter_block.h
table/format.cc
table/format.h
table/iterator.cc
table/iterator_wrapper.h
table/merger.cc
table/merger.h
table/table.cc
table/table_builder.cc
table/two_level_iterator.cc
table/two_level_iterator.h
util/arena.cc
util/arena.h
util/bloom.cc
util/cache.cc
util/coding.cc
util/coding.h
util/comparator.cc
util/crc32c.cc
util/crc32c.h
util/env.cc
util/filter_policy.cc
util/hash.cc
util/hash.h
util/histogram.cc
util/histogram.h
util/logging.cc
util/logging.h
util/mutexlock.h
util/options.cc
util/random.h
util/status.cc
util/persist.h
port/port.h
port/atomic_pointer.h
util/testutil.h
util/testutil.cc)
if(WIN32)
list(APPEND LEVEL_DB_FILES
port/port_win.h
port/port_win.cc
util/win_logger.h
util/win_logger.cc
util/env_boost.cc)
else()
list(APPEND LEVEL_DB_FILES
port/port_posix.h
port/port_posix.cc
util/posix_logger.h
util/env_posix.cc)
endif()
add_library(leveldb ${LEVEL_DB_FILES})
target_include_directories(leveldb
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include
PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}
)
target_link_libraries(leveldb
PRIVATE
${Boost_LIBRARIES}
${Pthread_LIBRARY}
${NUMA_LIBRARY}
)
set_target_properties(leveldb PROPERTIES PUBLIC_HEADER "include/leveldb/c.h;include/leveldb/cache.h;include/leveldb/comparator.h;include/leveldb/db.h;include/leveldb/dumpfile.h;include/leveldb/env.h;include/leveldb/iterator.h;include/leveldb/filter_policy.h;include/leveldb/iterator.h;include/leveldb/options.h;include/leveldb/slice.h;include/leveldb/status.h;include/leveldb/table.h;include/leveldb/table_builder.h;include/leveldb/write_batch.h;include/leveldb/export.h;")
INSTALL(TARGETS leveldb ARCHIVE DESTINATION /usr/local/lib PUBLIC_HEADER DESTINATION /usr/local/include/leveldb)
add_executable(leveldbmain main.cc)
target_link_libraries(leveldbmain PUBLIC leveldb)
add_executable(db_bench db/db_bench.cc)
target_link_libraries(db_bench PUBLIC leveldb)
find_package(SQLite3 REQUIRED)
include_directories(${SQLITE3_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}
include)
add_executable(sqlite3_bench doc/bench/db_bench_sqlite3.cc)
target_link_libraries(sqlite3_bench PUBLIC leveldb sqlite3)
find_package(KyotoCabinet REQUIRED)
include_directories(${KyotoCabinet_INCLUDE_DIRS}
${CMAKE_CURRENT_SOURCE_DIR}
include)
add_executable(kyotodb_bench doc/bench/db_bench_tree_db.cc)
target_link_libraries(kyotodb_bench PUBLIC leveldb kyotocabinet)