Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CMakeLists.txt « base_tests « base - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 724127020fee10127a3781765f90c21b78f41623 (plain)
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
project(base_tests)

add_definitions(-DOMIM_UNIT_TEST_DISABLE_PLATFORM_INIT)

set(
  SRC
  assert_test.cpp
  bits_test.cpp
  buffer_vector_test.cpp
  cache_test.cpp
  collection_cast_test.cpp
  condition_test.cpp
  containers_test.cpp
  levenshtein_dfa_test.cpp
  logging_test.cpp
  math_test.cpp
  matrix_test.cpp
  mem_trie_test.cpp
  newtype_test.cpp
  observer_list_test.cpp
  range_iterator_test.cpp
  ref_counted_tests.cpp
  regexp_test.cpp
  rolling_hash_test.cpp
  scope_guard_test.cpp
  small_set_test.cpp
  stl_add_test.cpp
  stl_helpers_test.cpp
  string_format_test.cpp
  string_utils_test.cpp
  sunrise_sunset_test.cpp
  thread_pool_tests.cpp
  threaded_list_test.cpp
  threads_test.cpp
  timegm_test.cpp
  timer_test.cpp
  uni_string_dfa_test.cpp
  worker_thread_tests.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})
omim_link_libraries(${PROJECT_NAME} base)