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

coding.pro « coding - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d36cd54b6de680e62a41db61bf8149214e121efe (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
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
# Coding project.
TARGET = coding
TEMPLATE = lib
CONFIG += staticlib warn_on

ROOT_DIR = ..

include($$ROOT_DIR/common.pri)

INCLUDEPATH *= $$ROOT_DIR/3party/tomcrypt/src/headers $$ROOT_DIR/3party/expat/lib

SOURCES += \
    arithmetic_codec.cpp \
    base64.cpp \
#    blob_indexer.cpp \
#    blob_storage.cpp \
    compressed_bit_vector.cpp \
#    compressed_varnum_vector.cpp \
    file_container.cpp \
    file_name_utils.cpp \
    file_reader.cpp \
    file_writer.cpp \
    hex.cpp \
    huffman.cpp \
    internal/file_data.cpp \
    lodepng.cpp \
    mmap_reader.cpp \
    multilang_utf8_string.cpp \
    png_memory_encoder.cpp \
    reader.cpp \
    reader_streambuf.cpp \
    reader_writer_ops.cpp \
    sha2.cpp \
    timsort/timsort.cpp \
    uri.cpp \
#    varint_vector.cpp \
    zip_creator.cpp \
    zip_reader.cpp \

HEADERS += \
    arithmetic_codec.hpp \
    base64.hpp \
    bit_streams.hpp \
#    blob_indexer.hpp \
#    blob_storage.hpp \
    buffer_reader.hpp \
    byte_stream.hpp \
    coder.hpp \
    coder_util.hpp \
    compressed_bit_vector.hpp \
#    compressed_varnum_vector.hpp \
    constants.hpp \
    dd_vector.hpp \
    diff.hpp \
    diff_patch_common.hpp \
    endianness.hpp \
    file_container.hpp \
    file_name_utils.hpp \
    file_reader.hpp \
    file_reader_stream.hpp \
    file_sort.hpp \
    file_writer.hpp \
    file_writer_stream.hpp \
    hex.hpp \
    huffman.hpp \
    internal/expat_impl.h \
    internal/file64_api.hpp \
    internal/file_data.hpp \
    lodepng.hpp \
    lodepng_io.hpp \
    lodepng_io_private.hpp \
    matrix_traversal.hpp \
    mmap_reader.hpp \
    multilang_utf8_string.hpp \
    parse_xml.hpp \
    png_memory_encoder.hpp \
    polymorph_reader.hpp \
    read_write_utils.hpp \
    reader.hpp \
    reader_cache.hpp \
    reader_streambuf.hpp \
    reader_wrapper.hpp \
    reader_writer_ops.hpp \
    sha2.hpp \
    streams.hpp \
    streams_common.hpp \
    streams_sink.hpp \
    timsort/timsort.hpp \
    trie.hpp \
    trie_builder.hpp \
    trie_reader.hpp \
    uri.hpp \
    url_encode.hpp \
    value_opt_string.hpp \
    var_record_reader.hpp \
    var_serial_vector.hpp \
    varint.hpp \
    varint_misc.hpp \
#    varint_vector.hpp \
    write_to_sink.hpp \
    writer.hpp \
    zip_creator.hpp \
    zip_reader.hpp \
    internal/xmlparser.hpp \