123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2018-09-04T15:11:28
- #
- #-------------------------------------------------
- QT += core gui
- QT += multimedia
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets network
- TARGET = ADCIntelligentShow_grpc
- 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
- DEFINES += PROTOBUF_USE_DLLS
- # 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
- SOURCES += \
- ../../driver/driver_grpc_client/grpcclientthread.cpp \
- ../../driver/driver_grpc_client/ivgrpc.grpc.pb.cc \
- ../../driver/driver_grpc_client/ivgrpc.pb.cc \
- ../../include/msgtype/brainstate.pb.cc \
- ../../include/msgtype/decition.pb.cc \
- ../../include/msgtype/gps.pb.cc \
- ../../include/msgtype/gpsimu.pb.cc \
- ../../include/msgtype/hmi.pb.cc \
- ../../include/msgtype/imu.pb.cc \
- ../../include/msgtype/radarobject.pb.cc \
- ../../include/msgtype/radarobjectarray.pb.cc \
- dialogsetting.cpp \
- ivmapview.cpp \
- ivview.cpp \
- main.cpp \
- adcintelligentshow.cpp \
- myview.cpp
- HEADERS += \
- ../../decition/common/common/gps_type.h \
- ../../driver/driver_grpc_client/grpcclientthread.h \
- ../../driver/driver_grpc_client/ivgrpc.grpc.pb.h \
- ../../driver/driver_grpc_client/ivgrpc.pb.h \
- ../../include/msgtype/brainstate.pb.h \
- ../../include/msgtype/decition.pb.h \
- ../../include/msgtype/gps.pb.h \
- ../../include/msgtype/gpsimu.pb.h \
- ../../include/msgtype/hmi.pb.h \
- ../../include/msgtype/imu.pb.h \
- ../../include/msgtype/radarobject.pb.h \
- ../../include/msgtype/radarobjectarray.pb.h \
- adcintelligentshow.h \
- dialogsetting.h \
- ivmapview.h \
- ivview.h \
- myview.h \
- pos_def.h
- FORMS += \
- adcintelligentshow.ui \
- dialogsetting.ui
- RESOURCES += \
- adcintelligentshow.qrc
- #LIBS += $$PWD/libprotobuf.lib
- win32: DEFINES += _WIN32_WINNT=0x0602
- !include(../../../include/common.pri ) {
- error( "Couldn't find the common.pri file!" )
- }
- !include(../../../include/ivprotobuf.pri ) {
- error( "Couldn't find the ivprotobuf.pri file!" )
- }
- !include(../../../include/ivboost.pri ) {
- error( "Couldn't find the ivboost.pri file!" )
- }
- !include(../../../include/ivgrpc.pri ) {
- error( "Couldn't find the ivgrpc.pri file!" )
- }
- !include(../../../include/ivyaml-cpp.pri ) {
- error( "Couldn't find the ivyaml-cpp.pri file!" )
- }
- INCLUDEPATH += $$PWD/../../decition/common
- INCLUDEPATH += $$PWD/../../decition/common/common
- INCLUDEPATH += $$PWD/../../driver/driver_grpc_client
- #DISTFILES +=
|