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

TARGET = convert
CONFIG += console
CONFIG -= app_bundle

TEMPLATE = app

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

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

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