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: 4f93b1b8c7ff0c8e614cdb77058fccfc73706763 (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
# Coding project.
TARGET = coding
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..
DEPENDENCIES = base bzip2 zlib tomcrypt

include($$ROOT_DIR/common.pri)

INCLUDEPATH += ../3party/tomcrypt/src/headers

SOURCES += \
    internal/file_data.cpp \
    hex.cpp \
    file_reader.cpp \
    file_writer.cpp \
    lodepng.cpp \
    file_container.cpp \
    bzip2_compressor.cpp \
    gzip_compressor.cpp \
    timsort/timsort.cpp \
    base64.cpp \
    sha2.cpp \
    multilang_utf8_string.cpp \

HEADERS += \
    internal/xmlparser.h \
    internal/expat_impl.h \
    internal/file_data.hpp \
    internal/file64_api.hpp \
    parse_xml.hpp \
    varint.hpp \
    mm_vector.hpp \
    mm_bit_vector.hpp \
    mm_base.hpp \
    endianness.hpp \
    byte_stream.hpp \
    var_serial_vector.hpp \
    hex.hpp \
    mm_compact_trie.hpp \
    mm_compact_tree.hpp \
    compact_trie_builder.hpp \
    compact_tree_builder.hpp \
    bit_vector_builder.hpp \
    dd_vector.hpp \
    dd_bit_vector.hpp \
    dd_base.hpp \
    writer.hpp \
    write_to_sink.hpp \
    reader.hpp \
    dd_bit_rank_directory.hpp \
    dd_compact_tree.hpp \
    dd_compact_trie.hpp \
    diff.hpp \
    diff_patch_common.hpp \
    source.hpp \
    lodepng.hpp \
    lodepng_io.hpp \
    lodepng_io_private.hpp \
    var_record_reader.hpp \
    file_sort.hpp \
    file_reader.hpp \
    file_writer.hpp \
    reader_cache.hpp \
    buffer_reader.hpp \
    streams.hpp \
    streams_sink.hpp \
    streams_common.hpp \
    file_container.hpp \
    polymorph_reader.hpp \
    coder.hpp \
    coder_util.hpp \
    bzip2_compressor.hpp \
    gzip_compressor.hpp \
    timsort/timsort.hpp \
    bit_shift.hpp \
    base64.hpp \
    sha2.hpp \
    value_opt_string.hpp \
    multilang_utf8_string.hpp \
    url_encode.hpp \