summaryrefslogtreecommitdiffstats
path: root/src/partition/partition.pro
blob: dd01fbf18d19ff5548eecfac341eb5cbfe0da52a (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
load(qt_build_config)

MODULE = jsondbpartition
TARGET = QtJsonDbPartition
VERSION = 1.0.0
QT = core qml
CONFIG += internal_module

load(qt_module)

include(../3rdparty/btree/btree.pri)
include(../hbtree/hbtree.pri)

RESOURCES = jsondb.qrc

HEADERS += \
    jsondbutils_p.h \
    jsondbowner.h \
    jsondbproxy.h \
    jsondbindex.h \
    jsondbindex_p.h \
    jsondbobject.h \
    jsondbpartition.h \
    jsondbquery.h \
    jsondbstat.h \
    jsondbview.h \
    jsondbmapdefinition.h \
    jsondbnotification.h \
    jsondbobjectkey.h \
    jsondbobjecttable.h \
    jsondbbtree.h \
    jsondbobjecttypes_impl_p.h \
    jsondbobjecttypes_p.h \
    jsondbreducedefinition.h \
    jsondbschemamanager_impl_p.h \
    jsondbschemamanager_p.h \
    jsondbscriptengine.h \
    jsondbsettings.h \
    jsondbindexquery.h \
    jsondberrors.h \
    jsondbstrings.h \
    jsondbpartitionglobal.h \
    jsondbcollator.h \
    jsondbcollator_p.h \
    jsondbpartition_p.h \
    jsondbpartitionspec.h \
    jsondbquerytokenizer_p.h \
    jsondbqueryparser.h \
    jsondbschema_p.h \
    jsondbcheckpoints_p.h

SOURCES += \
    jsondbowner.cpp \
    jsondbproxy.cpp \
    jsondbindex.cpp \
    jsondbobject.cpp \
    jsondbpartition.cpp \
    jsondbquery.cpp \
    jsondbview.cpp \
    jsondbmapdefinition.cpp \
    jsondbnotification.cpp \
    jsondbobjecttable.cpp \
    jsondbbtree.cpp \
    jsondbreducedefinition.cpp \
    jsondbscriptengine.cpp \
    jsondbsettings.cpp \
    jsondbindexquery.cpp \
    jsondberrors.cpp \
    jsondbstrings.cpp \
    jsondbcollator.cpp \
    jsondbquerytokenizer.cpp \
    jsondbqueryparser.cpp

config_icu {
    LIBS += -licuuc -licui18n
} else {
    DEFINES += NO_COLLATION_SUPPORT
}