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: fd9387f3c8ac8dfc107e85935949222175b61e3d (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
#add_definitions(-DOMIM_UNIT_TEST_DISABLE_PLATFORM_INIT)

set(
    HEADERS
    coder_test.hpp
    reader_test.hpp
)


set(
    SOURCES
    base64_for_user_id_test.cpp
    base64_test.cpp
    bit_streams_test.cpp
    coder_util_test.cpp
    compressed_bit_vector_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
    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
    reader_cache_test.cpp
    reader_test.cpp
    reader_writer_ops_test.cpp
    sha2_test.cpp
    simple_dense_coding_test.cpp
    succinct_mapper_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
    ${PROJECT_SOURCE_DIR}/testing/testingmain.cpp
)

set(SRC ${HEADERS} ${SOURCES})

omim_add_test(coding_tests "${SRC}" coding)