qt6windows7/examples/corelib/serialization/convert/convert.pro

33 lines
604 B
Prolog
Raw Normal View History

2023-10-30 06:33:08 +08:00
QT += core
QT -= gui
TARGET = convert
CONFIG += cmdline
TEMPLATE = app
# install
target.path = $$[QT_INSTALL_EXAMPLES]/corelib/serialization/convert
INSTALLS += target
SOURCES += main.cpp \
2023-12-05 01:42:35 +08:00
converter.cpp \
2023-10-30 06:33:08 +08:00
cborconverter.cpp \
datastreamconverter.cpp \
2023-11-02 01:02:52 +08:00
debugtextdumper.cpp \
jsonconverter.cpp \
nullconverter.cpp \
2023-10-30 06:33:08 +08:00
textconverter.cpp \
2023-11-02 01:02:52 +08:00
xmlconverter.cpp
2023-10-30 06:33:08 +08:00
HEADERS += \
converter.h \
cborconverter.h \
datastreamconverter.h \
2023-11-02 01:02:52 +08:00
debugtextdumper.h \
jsonconverter.h \
nullconverter.h \
2023-10-30 06:33:08 +08:00
textconverter.h \
2023-12-05 01:42:35 +08:00
variantorderedmap.h \
2023-11-02 01:02:52 +08:00
xmlconverter.h