v2xTcpClientWL.pro 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2020-12-25T08:41:28
  4. #
  5. #-------------------------------------------------
  6. QT += core gui network
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = v2xTcpClientWL
  9. TEMPLATE = app
  10. # The following define makes your compiler emit warnings if you use
  11. # any feature of Qt which has been marked as deprecated (the exact warnings
  12. # depend on your compiler). Please consult the documentation of the
  13. # deprecated API in order to know how to port your code away from it.
  14. DEFINES += QT_DEPRECATED_WARNINGS
  15. # You can also make your code fail to compile if you use deprecated APIs.
  16. # In order to do so, uncomment the following line.
  17. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  18. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  19. INCLUDEPATH += $$PWD/../../../include/
  20. LIBS += -L$$PWD/../../../bin/ -lxmlparam -lmodulecomm -livlog -livfault -lprotobuf
  21. INCLUDEPATH += $$PWD/../../include/msgtype
  22. CONFIG += c++11
  23. SOURCES += \
  24. main.cpp \
  25. mainwindow.cpp \
  26. ../../include/msgtype/v2x.pb.cc \
  27. ../../include/msgtype/chassis.pb.cc \
  28. ../../include/msgtype/gpsimu.pb.cc \
  29. ../../include/msgtype/object.pb.cc \
  30. ../../include/msgtype/objectarray.pb.cc \
  31. ../../include/msgtype/radarobject.pb.cc \
  32. ../../include/msgtype/radarobjectarray.pb.cc \
  33. transfer.cpp \
  34. gnss_coordinate_convert.cpp
  35. HEADERS += \
  36. mainwindow.h \
  37. data_type.h\
  38. ../../include/msgtype/v2x.pb.h \
  39. ../../include/msgtype/chassis.pb.h \
  40. ../../include/msgtype/gpsimu.pb.h \
  41. ../../include/msgtype/object.pb.h \
  42. ../../include/msgtype/objectarray.pb.h \
  43. ../../include/msgtype/radarobject.pb.h \
  44. ../../include/msgtype/radarobjectarray.pb.h \
  45. transfer.h \
  46. decition_type.h \
  47. gps_type.h \
  48. boost.h \
  49. gnss_coordinate_convert.h
  50. FORMS += \
  51. mainwindow.ui
  52. win32: INCLUDEPATH += C:/File/boost/boost_1_67_0
  53. 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
  54. unix:!macx: LIBS += -L$$PWD/./ -lboost_thread -lboost_system
  55. unix:LIBS += -lboost_thread -lboost_system -lboost_serialization
  56. # Default rules for deployment.
  57. qnx: target.path = /tmp/$${TARGET}/bin
  58. else: unix:!android: target.path = /opt/$${TARGET}/bin
  59. !isEmpty(target.path): INSTALLS += target