summaryrefslogtreecommitdiffstats
path: root/src/partition/partition.pro
blob: 88bfd52a1d8b82383401d7d5b6a9d42da7815a1e (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
TEMPLATE = lib
TARGET = $$QT.jsondbpartition.name
MODULE = jsondbpartition

load(qt_module)
load(qt_module_config)

DESTDIR = $$QT.jsondbpartition.libs
VERSION = $$QT.jsondbpartition.VERSION

QT = core network qml

CONFIG += module create_prl
MODULE_PRI = ../../modules/qt_jsondbpartition.pri

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

mac:QMAKE_FRAMEWORK_BUNDLE_NAME = $$QT.jsondbpartition.name

contains(config_test_icu, yes) {
    LIBS += -licuuc -licui18n
} else {
    DEFINES += NO_COLLATION_SUPPORT
}