1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- #-------------------------------------------------
- #
- # Project created by QtCreator 2020-12-25T08:41:28
- #
- #-------------------------------------------------
- QT += core gui network
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- TARGET = v2xTcpClientWL
- 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
- INCLUDEPATH += $$PWD/../../../include/
- LIBS += -L$$PWD/../../../bin/ -lxmlparam -lmodulecomm -livlog -livfault -lprotobuf
- INCLUDEPATH += $$PWD/../../include/msgtype
- CONFIG += c++11
- SOURCES += \
- main.cpp \
- mainwindow.cpp \
- ../../include/msgtype/v2x.pb.cc \
- ../../include/msgtype/chassis.pb.cc \
- ../../include/msgtype/gpsimu.pb.cc \
- ../../include/msgtype/object.pb.cc \
- ../../include/msgtype/objectarray.pb.cc \
- ../../include/msgtype/radarobject.pb.cc \
- ../../include/msgtype/radarobjectarray.pb.cc \
- transfer.cpp \
- gnss_coordinate_convert.cpp
- HEADERS += \
- mainwindow.h \
- data_type.h\
- ../../include/msgtype/v2x.pb.h \
- ../../include/msgtype/chassis.pb.h \
- ../../include/msgtype/gpsimu.pb.h \
- ../../include/msgtype/object.pb.h \
- ../../include/msgtype/objectarray.pb.h \
- ../../include/msgtype/radarobject.pb.h \
- ../../include/msgtype/radarobjectarray.pb.h \
- transfer.h \
- decition_type.h \
- gps_type.h \
- boost.h \
- gnss_coordinate_convert.h
- FORMS += \
- mainwindow.ui
- win32: INCLUDEPATH += C:/File/boost/boost_1_67_0
- win32: LIBS += -LC:/File/boost/boost_1_67_0/vc2017/lib -lboost_system-vc141-mt-x64-1_67 -lboost_thread-vc141-mt-x64-1_67
- unix:!macx: LIBS += -L$$PWD/./ -lboost_thread -lboost_system
- unix:LIBS += -lboost_thread -lboost_system -lboost_serialization
- # Default rules for deployment.
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- !isEmpty(target.path): INSTALLS += target
|