-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathCMakeLists.txt
248 lines (219 loc) · 6.4 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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
cmake_minimum_required(VERSION 3.0.2 FATAL_ERROR)
project(leveldb CXX)
set(CMAKE_DEBUG_POSTFIX "d")
set(Boost_USE_STATIC_LIBS ON)
set(Boost_USE_MULTITHREAD ON)
set(Boost_USE_STATIC_RUNTIME OFF)
find_package(Boost COMPONENTS
date_time
filesystem
system
REQUIRED)
set(SNAPPY_LIBRARY "")
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)
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
)
endif()
add_definitions(
-DLEVELDB_ATOMIC_PRESENT
)
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
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
port/port.h)
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}
)
add_executable(leveldbutil
db/leveldb_main.cc)
target_link_libraries(leveldbutil
leveldb)
set_target_properties(leveldbutil PROPERTIES
DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX})
# we distribute the leveldbutil as it might be useful
install(TARGETS leveldbutil
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
##################################### TESTS #######################################
# Every leveldb test file has to be compiled as an independant binary
# because of the test framework used by leveldb.
add_library(leveldb_test_rt
util/testutil.h
util/testutil.cc
util/testharness.h
util/testharness.cc)
target_include_directories(leveldb_test_rt
PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/include
)
add_custom_target(RUN_LEVELDB_UNIT_TESTS
COMMAND ${CMAKE_CTEST_COMMAND}
--build-config ${CMAKE_CFG_INTDIR}
--output-log LevelDB_test_${CMAKE_CFG_INTDIR}.log
--output-on-failure
--tests-regex leveldb
COMMENT "Running all LevelDB unit tests"
)
function(LEVELDB_ADD_TEST TESTNAME TESTFILE)
if(NOT TESTNAME)
message(SEND_ERROR "Error: LEVELDB_ADD_TEST called without test name")
return()
endif(NOT TESTNAME)
if(NOT TESTFILE)
message(SEND_ERROR "Error: LEVELDB_ADD_TEST called without test file")
return()
endif(NOT TESTFILE)
add_executable(leveldb_${TESTNAME}_test
${TESTFILE})
target_link_libraries(leveldb_${TESTNAME}_test
leveldb_test_rt
leveldb)
set_target_properties(leveldb_${TESTNAME}_test PROPERTIES
DEBUG_POSTFIX ${CMAKE_DEBUG_POSTFIX})
add_test(NAME leveldb_${TESTNAME}_test COMMAND leveldb_${TESTNAME}_test)
add_dependencies(RUN_LEVELDB_UNIT_TESTS leveldb_${TESTNAME}_test)
endfunction(LEVELDB_ADD_TEST)
LEVELDB_ADD_TEST(env util/env_test.cc)
LEVELDB_ADD_TEST(crc32 util/crc32c_test.cc)
LEVELDB_ADD_TEST(coding util/coding_test.cc)
LEVELDB_ADD_TEST(arena util/arena_test.cc)
LEVELDB_ADD_TEST(cache util/cache_test.cc)
LEVELDB_ADD_TEST(table table/table_test.cc)
# IMPORTANT: Commented a test that fails randomly.
# LEVELDB_ADD_TEST(autocompact db/autocompact_test.cc)
LEVELDB_ADD_TEST(corruption db/corruption_test.cc)
LEVELDB_ADD_TEST(dbformat db/dbformat_test.cc)
LEVELDB_ADD_TEST(filename db/filename_test.cc)
LEVELDB_ADD_TEST(log db/log_test.cc)
LEVELDB_ADD_TEST(skiplist db/skiplist_test.cc)
LEVELDB_ADD_TEST(version_edit db/version_edit_test.cc)
LEVELDB_ADD_TEST(write_batch db/write_batch_test.cc)
LEVELDB_ADD_TEST(version_set db/version_set_test.cc)
LEVELDB_ADD_TEST(filter_block table/filter_block_test.cc)
LEVELDB_ADD_TEST(bloom util/bloom_test.cc)
LEVELDB_ADD_TEST(hash util/hash_test.cc)
LEVELDB_ADD_TEST(db_bench db/db_bench.cc)
LEVELDB_ADD_TEST(db db/db_test.cc)