81 lines
2.1 KiB
Prolog
81 lines
2.1 KiB
Prolog
#-------------------------------------------------
|
|
#
|
|
# Project created by QtCreator 2019-01-21T13:30:50
|
|
#
|
|
#-------------------------------------------------
|
|
|
|
QT += core \
|
|
gui \
|
|
network
|
|
|
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
|
TARGET = RoboGlue
|
|
TEMPLATE = app
|
|
|
|
# The following define makes your compiler emit warnings if you use
|
|
# any feature of Qt which has been marked as deprecated (the exact warnings
|
|
# depend on your compiler). Please consult the documentation of the
|
|
# deprecated API in order to know how to port your code away from it.
|
|
DEFINES += QT_DEPRECATED_WARNINGS
|
|
|
|
# You can also make your code fail to compile if you use deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
# You can also select to disable deprecated APIs only up to a certain version of Qt.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
CONFIG += c++11
|
|
QMAKE_CXXFLAGS += -Wno-unused-parameter \
|
|
-Wno-unused-variable
|
|
|
|
SOURCES += \
|
|
main.cpp \
|
|
libURcom/clientMessage.cpp \
|
|
libURcom/URCLinterface.cpp \
|
|
init/roboglue_init.cpp \
|
|
com/roboglue_com.cpp \
|
|
gui/roboglue_gui.cpp \
|
|
main/roboglue_main.cpp \
|
|
shared/roboglue_shared.cpp \
|
|
track/roboglue_track.cpp \
|
|
com/mqtt_callback.cpp
|
|
|
|
HEADERS += \
|
|
libURcom/clientMessage.h \
|
|
libURcom/packagetypes.h \
|
|
libURcom/URCLinterface.h \
|
|
init/roboglue_init.h \
|
|
com/roboglue_com.h \
|
|
gui/roboglue_gui.h \
|
|
main/roboglue_main.h \
|
|
shared/roboglue_shared.h \
|
|
track/roboglue_track.h \
|
|
libJson/json.hpp \
|
|
com/mqtt_callback.h
|
|
|
|
FORMS += \
|
|
init/roboglue_init.ui \
|
|
gui/roboglue_gui.ui
|
|
|
|
|
|
LIBS += -lboost_system \
|
|
-lboost_thread \
|
|
-lboost_chrono \
|
|
-lpthread \
|
|
-lpaho-mqttpp3 \
|
|
-lpaho-mqtt3a
|
|
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|
|
|
|
DISTFILES += \
|
|
|
|
|
|
SUBDIRS += \
|
|
RoboGlue.pro
|
|
|
|
RESOURCES += \
|
|
roboglue_resources.qrc
|