summaryrefslogtreecommitdiffstats
path: root/src/common/common.pri
blob: 01e012caca94702c04e9b9c9a32d3b0656b35989 (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
INCLUDEPATH += $$PWD

include(../3rdparty/qjson/qjson.pri)

unix {
    contains(QT_CONFIG,icu) {
        LIBS += -licuuc -licui18n
    } else {
        DEFINES += NO_COLLATION_SUPPORT
    }
}

HEADERS += \
    $$PWD/jsondb-global.h \
    $$PWD/jsondb-error.h \
    $$PWD/jsondb-strings.h \
    $$PWD/jsondbcollator.h \
    $$PWD/jsondbcollator_p.h \
    $$PWD/jsonstream.h

SOURCES += \
    $$PWD/jsondb-strings.cpp \
    $$PWD/jsondbcollator.cpp \
    $$PWD/jsonstream.cpp