mirror of
https://github.com/romixlab/qmsgpack.git
synced 2025-07-30 02:17:15 +02:00
Deduplicates the build rules and ensures no differences in source-in and library build rules
37 lines
838 B
Plaintext
37 lines
838 B
Plaintext
QT += core
|
|
|
|
INCLUDEPATH += $$PWD/src
|
|
|
|
SOURCES += \
|
|
$$PWD/src/msgpack.cpp \
|
|
$$PWD/src/msgpackcommon.cpp \
|
|
$$PWD/src/private/pack_p.cpp \
|
|
$$PWD/src/private/unpack_p.cpp \
|
|
$$PWD/src/private/qt_types_p.cpp \
|
|
$$PWD/src/msgpackstream.cpp \
|
|
$$PWD/src/stream/time.cpp \
|
|
$$PWD/src/stream/geometry.cpp
|
|
|
|
HEADERS += \
|
|
$$PWD/src/msgpack.h \
|
|
$$PWD/src/private/pack_p.h \
|
|
$$PWD/src/private/unpack_p.h \
|
|
$$PWD/src/endianhelper.h \
|
|
$$PWD/src/msgpackcommon.h \
|
|
$$PWD/src/msgpack_export.h \
|
|
$$PWD/src/private/qt_types_p.h \
|
|
$$PWD/src/msgpackstream.h \
|
|
$$PWD/src/stream/time.h \
|
|
$$PWD/src/stream/geometry.h
|
|
|
|
qtHaveModule(gui) {
|
|
QT += gui
|
|
}
|
|
|
|
qtHaveModule(location) {
|
|
QT += location
|
|
|
|
SOURCES += $$PWD/src/stream/location.cpp
|
|
HEADERS += $$PWD/src/stream/location.h
|
|
}
|