2017-02-15 10:13:28 +01:00
|
|
|
QT += core
|
2015-11-27 21:52:10 +03:00
|
|
|
|
|
|
|
|
INCLUDEPATH += $$PWD/src
|
|
|
|
|
|
|
|
|
|
SOURCES += \
|
|
|
|
|
$$PWD/src/msgpack.cpp \
|
|
|
|
|
$$PWD/src/msgpackcommon.cpp \
|
|
|
|
|
$$PWD/src/private/pack_p.cpp \
|
|
|
|
|
$$PWD/src/private/unpack_p.cpp \
|
2018-11-20 20:57:25 +03:00
|
|
|
$$PWD/src/msgpackstream.cpp
|
2015-11-27 21:52:10 +03:00
|
|
|
|
|
|
|
|
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 \
|
2018-11-20 20:57:25 +03:00
|
|
|
$$PWD/src/msgpackstream.h
|
2017-02-15 10:13:28 +01:00
|
|
|
|
2018-11-20 20:57:25 +03:00
|
|
|
!contains(DEFINES, MSGPACK_NO_PACKTYPES) {
|
|
|
|
|
SOURCES += \
|
|
|
|
|
$$PWD/src/private/qt_types_p.cpp \
|
|
|
|
|
$$PWD/src/stream/time.cpp \
|
|
|
|
|
$$PWD/src/stream/geometry.cpp
|
|
|
|
|
|
|
|
|
|
HEADERS += \
|
|
|
|
|
$$PWD/src/private/qt_types_p.h \
|
|
|
|
|
$$PWD/src/stream/time.h \
|
|
|
|
|
$$PWD/src/stream/geometry.h
|
|
|
|
|
|
|
|
|
|
qtHaveModule(gui) {
|
|
|
|
|
QT += gui
|
|
|
|
|
}
|
2018-11-20 16:57:27 +03:00
|
|
|
|
2018-11-20 20:57:25 +03:00
|
|
|
qtHaveModule(location) {
|
|
|
|
|
QT += location
|
2017-02-15 10:13:28 +01:00
|
|
|
|
2018-11-20 20:57:25 +03:00
|
|
|
SOURCES += $$PWD/src/stream/location.cpp
|
|
|
|
|
HEADERS += $$PWD/src/stream/location.h
|
|
|
|
|
}
|
2017-02-15 10:13:28 +01:00
|
|
|
}
|