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

CMakeLists.txt « coding_tests « coding - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6955a79419942434e011284fbad218bf55ee78ef (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
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
project(coding_tests)

set(
  SRC
  base64_test.cpp
  bit_streams_test.cpp
  bwt_coder_tests.cpp
  coder_test.hpp
  coder_util_test.cpp
  compressed_bit_vector_test.cpp
  csv_reader_test.cpp
  dd_vector_test.cpp
  diff_test.cpp
  elias_coder_test.cpp
  endianness_test.cpp
  file_container_test.cpp
  file_data_test.cpp
  file_sort_test.cpp
  file_utils_test.cpp
  fixed_bits_ddvector_test.cpp
  geometry_coding_test.cpp
  hex_test.cpp
  huffman_test.cpp
  mem_file_reader_test.cpp
  mem_file_writer_test.cpp
  multilang_utf8_string_test.cpp
  png_decoder_test.cpp
  point_to_integer_test.cpp
  pointd_to_pointu_tests.cpp
  reader_cache_test.cpp
  reader_test.cpp
  reader_test.hpp
  reader_writer_ops_test.cpp
  simple_dense_coding_test.cpp
  succinct_mapper_test.cpp
  test_polylines.cpp
  test_polylines.hpp
  text_storage_tests.cpp
  traffic_test.cpp
  uri_test.cpp
  url_encode_test.cpp
  value_opt_string_test.cpp
  var_record_reader_test.cpp
  var_serial_vector_test.cpp
  varint_test.cpp
  #varint_vector_test.cpp
  writer_test.cpp
  zip_creator_test.cpp
  zip_reader_test.cpp
  zlib_test.cpp
)

omim_add_test(${PROJECT_NAME} ${SRC})

omim_link_libraries(
  ${PROJECT_NAME}
  platform_tests_support
  platform
  coding
  base
  geometry
  minizip
  succinct
  stats_client
  ${Qt5Widgets_LIBRARIES}
  ${LIBZ}
)