-
Notifications
You must be signed in to change notification settings - Fork 72
/
CMakeLists.txt
65 lines (53 loc) · 1.78 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
add_executable(simple_example
simple_example.cc)
target_link_libraries(simple_example
${ROCKSDB_LIB})
add_executable(column_families_example
column_families_example.cc)
target_link_libraries(column_families_example
${ROCKSDB_LIB})
add_executable(compact_files_example
compact_files_example.cc)
target_link_libraries(compact_files_example
${ROCKSDB_LIB})
add_executable(c_simple_example
c_simple_example.c)
target_link_libraries(c_simple_example
${ROCKSDB_LIB})
add_executable(optimistic_transaction_example
optimistic_transaction_example.cc)
target_link_libraries(optimistic_transaction_example
${ROCKSDB_LIB})
add_executable(transaction_example
transaction_example.cc)
target_link_libraries(transaction_example
${ROCKSDB_LIB})
add_executable(compaction_filter_example
compaction_filter_example.cc)
target_link_libraries(compaction_filter_example
${ROCKSDB_LIB})
add_executable(options_file_example
options_file_example.cc)
target_link_libraries(options_file_example
${ROCKSDB_LIB})
add_executable(multi_processes_example
EXCLUDE_FROM_ALL
multi_processes_example.cc)
target_link_libraries(multi_processes_example
${ROCKSDB_LIB})
add_executable(speedb_with_ttl_example
speedb_with_ttl_example.cc)
target_link_libraries(speedb_with_ttl_example
${ROCKSDB_LIB})
add_executable(speedb_is_awesome_example
speedb_is_awesome_example.cc)
target_link_libraries(speedb_is_awesome_example
${ROCKSDB_LIB})
add_executable(on_thread_start_callback_example
on_thread_start_callback_example.cc)
target_link_libraries(on_thread_start_callback_example
${ROCKSDB_LIB})
add_executable(speedb_non_blocking_compact_range_example
speedb_non_blocking_compact_range_example.cc)
target_link_libraries(speedb_non_blocking_compact_range_example
${ROCKSDB_LIB})