|
@@ -0,0 +1,50 @@
|
|
|
+QT -= gui
|
|
|
+QT += network
|
|
|
+QT += serialport
|
|
|
+QT += core xml
|
|
|
+CONFIG += c++11 console
|
|
|
+CONFIG -= app_bundle
|
|
|
+greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
|
|
+# The following define makes your compiler emit warnings if you use
|
|
|
+# any feature of Qt which as been marked 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
|
|
|
+
|
|
|
+QMAKE_LFLAGS += -no-pie
|
|
|
+
|
|
|
+# 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
|
|
|
+INCLUDEPATH += $$PWD/../../../include/
|
|
|
+LIBS += -L$$PWD/../../../bin/ -lxmlparam -lmodulecomm -livlog -livexit -livfault -lprotobuf
|
|
|
+
|
|
|
+INCLUDEPATH += $$PWD/../../include/msgtype
|
|
|
+SOURCES += main.cpp \
|
|
|
+ v2x.cpp \
|
|
|
+ pc5.cpp \
|
|
|
+ mainwindow.cpp \
|
|
|
+ ../../include/msgtype/v2r.pb.cc \
|
|
|
+ ../../include/msgtype/gpsimu.pb.cc \
|
|
|
+ ../../include/msgtype/rawpic.pb.cc \
|
|
|
+ ../../include/msgtype/fusionobject.pb.cc \
|
|
|
+ ../../include/msgtype/radarobject.pb.cc \
|
|
|
+ ../../include/msgtype/lightarray.pb.cc
|
|
|
+
|
|
|
+HEADERS += \
|
|
|
+ v2x.h \
|
|
|
+ pc5.h \
|
|
|
+ mainwindow.h \
|
|
|
+ ../../include/msgtype/v2r.pb.h \
|
|
|
+ ../../include/msgtype/gpsimu.pb.h \
|
|
|
+ ../../include/msgtype/rawpic.pb.h \
|
|
|
+ ../../include/msgtype/fusionobject.pb.h \
|
|
|
+ ../../include/msgtype/radarobject.pb.h \
|
|
|
+ ../../include/msgtype/lightarray.pb.h \
|
|
|
+
|
|
|
+FORMS += \
|
|
|
+ mainwindow.ui
|
|
|
+
|
|
|
+RESOURCES += \
|
|
|
+ light.qrc
|