-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakeLists.txt
111 lines (108 loc) · 1.92 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
project(base)
set(
SRC
array_adapters.hpp
assert.hpp
atomic_shared_ptr.hpp
base.cpp
base.hpp
beam.hpp
bidirectional_map.hpp
bits.hpp
buffer_vector.hpp
bwt.cpp
bwt.hpp
cache.hpp
cancellable.hpp
checked_cast.hpp
clustering_map.hpp
collection_cast.hpp
condition.cpp
condition.hpp
control_flow.hpp
deferred_task.cpp
deferred_task.hpp
dfa_helpers.hpp
exception.cpp
exception.hpp
fifo_cache.hpp
file_name_utils.cpp
file_name_utils.hpp
geo_object_id.cpp
geo_object_id.hpp
get_time.hpp
gmtime.cpp
gmtime.hpp
internal/message.cpp
internal/message.hpp
levenshtein_dfa.cpp
levenshtein_dfa.hpp
limited_priority_queue.hpp
logging.cpp
logging.hpp
lower_case.cpp
macros.hpp
math.hpp
matrix.hpp
mem_trie.hpp
move_to_front.cpp
move_to_front.hpp
mutex.hpp
newtype.hpp
normalize_unicode.cpp
non_intersecting_intervals.hpp
observer_list.hpp
pprof.cpp
pprof.hpp
random.cpp
random.hpp
range_iterator.hpp
ref_counted.hpp
rolling_hash.hpp
scope_guard.hpp
set_operations.hpp
shared_buffer_manager.cpp
shared_buffer_manager.hpp
small_set.hpp
src_point.cpp
src_point.hpp
stats.hpp
stl_helpers.hpp
stl_iterator.hpp
string_format.cpp
string_format.hpp
string_utils.cpp
string_utils.hpp
strings_bundle.cpp
strings_bundle.hpp
suffix_array.cpp
suffix_array.hpp
sunrise_sunset.cpp
sunrise_sunset.hpp
task_loop.hpp
thread.cpp
thread.hpp
thread_checker.cpp
thread_checker.hpp
thread_pool.cpp
thread_pool.hpp
thread_pool_computational.hpp
thread_pool_delayed.cpp
thread_pool_delayed.hpp
thread_safe_queue.hpp
thread_utils.hpp
threaded_container.cpp
threaded_container.hpp
threaded_list.hpp
timegm.cpp
timegm.hpp
timer.cpp
timer.hpp
uni_string_dfa.cpp
uni_string_dfa.hpp
url_helpers.cpp
url_helpers.hpp
visitor.hpp
)
omim_add_library(${PROJECT_NAME} ${SRC})
omim_add_test_subdirectory(base_tests)