summaryrefslogtreecommitdiffstats
path: root/examples/corelib/serialization/convert/convert.pro
blob: 7592de7a227c3e9f575cdfb7645d9944ccb944b4 (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
QT += core
QT -= gui

TARGET = convert
CONFIG += cmdline

TEMPLATE = app

# install
target.path = $$[QT_INSTALL_EXAMPLES]/corelib/serialization/convert
INSTALLS += target

SOURCES += main.cpp \
    converter.cpp \
    cborconverter.cpp \
    datastreamconverter.cpp \
    debugtextdumper.cpp \
    jsonconverter.cpp \
    nullconverter.cpp \
    textconverter.cpp \
    xmlconverter.cpp

HEADERS += \
    converter.h \
    cborconverter.h \
    datastreamconverter.h \
    debugtextdumper.h \
    jsonconverter.h \
    nullconverter.h \
    textconverter.h \
    variantorderedmap.h \
    xmlconverter.h