forked from WangEP/SLM-DB
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
221 lines (199 loc) · 5.9 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
cmake_minimum_required(VERSION 3.0)
project(SLM-DB C CXX)
set(CMAKE_DEBUG_POSTFIX "d")
set(SNAPPY_LIBRARY "")
string(REGEX MATCH "clang" CLANG ${CMAKE_CXX_COMPILER})
set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
find_library(Pthread_LIBRARY pthread)
find_library(Realtime_LIBRARY rt)
find_package(PMDK REQUIRED)
set(Stdcpp_LIBRARY stdc++)
include_directories(
${VMEM_INCLUDE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}/include)
add_compile_options(
-Wno-sign-compare
-std=c++17
-O2
-DNDEBUG
)
add_definitions(-DLEVELDB_ATOMIC_PRESENT)
add_definitions(-DOS_LINUX)
add_definitions(-DLEVELDB_PLATFORM_POSIX)
add_definitions(-fno-builtin-memcmp)
add_definitions(-Wint-to-pointer-cast)
add_definitions(-DPERF_LOG=1)
set(LEVEL_DB_FILES
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
include/leveldb/index.h
include/leveldb/persistant_pool.h
include/leveldb/string.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/mock_log.h
db/skiplist.h
db/snapshot.h
db/memtable.cc
db/memtable.h
db/table_cache.cc
db/table_cache.h
db/write_batch.cc
db/write_batch_internal.h
db/version.cc
db/version.h
db/version_control.cc
db/version_control.h
db/version_edit.cc
db/version_edit.h
db/logger.cc
db/logger.h
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/string.cc
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
util/testharness.h
util/testharness.cc
util/thread_pool.h
util/int_based_comparator.h
util/testutil.h
util/testutil.cc
util/perf_log.h
util/perf_log.cc
util/persistant_pool.cc
port/port.h
port/atomic_pointer.h
index/btree_index.cc
index/btree_index.h
index/index_iterator.cc
index/index_iterator.h
index/ff_btree.cc
index/ff_btree.h
index/ff_btree_iterator.cc
index/ff_btree_iterator.h
index/index.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}
)
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;
include/leveldb/index.h
include/leveldb/persistant_pool.h")
target_link_libraries(leveldb
PRIVATE
${Pthread_LIBRARY}
${PMEM_LIBRARY}
${PMEMCTO_LIBRARY}
${PMEMOBJ_LIBRARY}
${PMEMLOG_LIBRARY}
${VMEM_LIBRARY}
)
INSTALL(TARGETS leveldb ARCHIVE DESTINATION /usr/local/lib PUBLIC_HEADER DESTINATION /usr/local/include/leveldb)
add_executable(sanity_check db/sanity_check.cc)
target_link_libraries(sanity_check PUBLIC leveldb)
add_executable(db_bench db/db_bench.cc)
target_link_libraries(db_bench PUBLIC leveldb)
add_executable(ff_btree_test index/ff_btree_test.cc)
target_link_libraries(ff_btree_test PUBLIC leveldb)
add_executable(memtable_bench bench/memtable_bench.cc)
target_link_libraries(memtable_bench PUBLIC leveldb)
add_executable(btree_bench bench/btree_bench.cc)
target_link_libraries(btree_bench PUBLIC leveldb)
add_executable(file_bench bench/file_bench.cc)
target_link_libraries(file_bench PUBLIC leveldb)
add_executable(pm_stream util/persist_stream.cc)
target_link_libraries(pm_stream ${VMEM_LIBRARY})