c78d9bf549
Although used mostly in the same files, they're separate types, so define them in separate places. Pick-to: 6.6 6.5 Task-number: QTBUG-111228 Change-Id: I9e64b382ad48f9a74e432ccd49b6f5fcc9316da3 Reviewed-by: Ivan Solovev <ivan.solovev@qt.io>
32 lines
584 B
Prolog
32 lines
584 B
Prolog
QT += core
|
|
QT -= gui
|
|
|
|
TARGET = convert
|
|
CONFIG += cmdline
|
|
|
|
TEMPLATE = app
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/corelib/serialization/convert
|
|
INSTALLS += target
|
|
|
|
SOURCES += main.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
|