| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- DISTFILES += \
- $$PWD/qjsonreggen.py
- JSON_TYPES = \
- bool \
- char \
- "signed char" \
- uchar \
- short \
- ushort \
- int \
- uint \
- long \
- ulong \
- qlonglong \
- qulonglong \
- float \
- double \
- QObject* \
- QChar \
- QString \
- QDate \
- QTime \
- QDateTime \
- QUrl \
- QUuid \
- QCborValue \
- QCborMap \
- QCborArray \
- QJsonValue \
- QJsonObject \
- QJsonArray \
- QMimeType \
- QVersionNumber \
- QLocale \
- QRegularExpression \
- QSize \
- QPoint \
- QLine \
- QRect \
- QSizeF \
- QPointF \
- QLineF \
- QRectF \
- QByteArray
- QSize.modes = list
- QPoint.modes = list
- QLine.modes = list
- QRect.modes = list
- QSizeF.modes = list
- QPointF.modes = list
- QLineF.modes = list
- QRectF.modes = list
- QByteArray.modes = map set
- isEmpty(QT_JSONSERIALIZER_REGGEN_DIR): QT_JSONSERIALIZER_REGGEN_DIR = $$OUT_PWD/.reggen
- debug_and_release {
- CONFIG(debug, debug|release): QT_JSONSERIALIZER_REGGEN_DIR = $$QT_JSONSERIALIZER_REGGEN_DIR/debug
- CONFIG(release, debug|release): QT_JSONSERIALIZER_REGGEN_DIR = $$QT_JSONSERIALIZER_REGGEN_DIR/release
- }
- mkpath($$QT_JSONSERIALIZER_REGGEN_DIR)
- isEmpty(QT_JSONSERIALIZER_TYPESPLIT_PY) {
- win32: QT_JSONSERIALIZER_TYPESPLIT_PY = python
- QT_JSONSERIALIZER_TYPESPLIT_PY += $$shell_quote($$PWD/qjsonreggen.py)
- }
- for(type, JSON_TYPES) {
- type_base = $$replace(type, "\\W", "_")
- target_base = qjsonconverterreg_$${type_base}.cpp
- target_path = $$absolute_path($$target_base, $$QT_JSONSERIALIZER_REGGEN_DIR)
- $${target_path}.name = $$target_path
- $${target_path}.depends = $$PWD/qjsonreggen.py $$PWD/qjsonreggen.pri
- $${target_path}.commands = $$QT_JSONSERIALIZER_TYPESPLIT_PY $$shell_quote($$target_path) $$shell_quote($$type) $$eval($${type_base}.modes)
- QMAKE_EXTRA_TARGETS += $$target_path
- GENERATED_SOURCES += $$target_path
- }
- escaped_types =
- for(type, JSON_TYPES): escaped_types += $$shell_quote($$type)
- target_path = $$absolute_path(qjsonconverterreg_hook.cpp, $$QT_JSONSERIALIZER_REGGEN_DIR)
- $${target_path}.name = $$target_path
- $${target_path}.depends = $$PWD/qjsonreggen.py $$PWD/qjsonreggen.pri
- $${target_path}.commands = $$QT_JSONSERIALIZER_TYPESPLIT_PY super $$shell_quote($$target_path) $$escaped_types
- QMAKE_EXTRA_TARGETS += $$target_path
- GENERATED_SOURCES += $$target_path
|