decition_brain.pro 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. QT -= gui
  2. QT += network dbus xml
  3. #CONFIG += c++11 console
  4. CONFIG -= app_bundle
  5. # The following define makes your compiler emit warnings if you use
  6. # any feature of Qt which as been marked deprecated (the exact warnings
  7. # depend on your compiler). Please consult the documentation of the
  8. # deprecated API in order to know how to port your code away from it.
  9. DEFINES += QT_DEPRECATED_WARNINGS
  10. # You can also make your code fail to compile if you use deprecated APIs.
  11. # In order to do so, uncomment the following line.
  12. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  13. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  14. SOURCES += $$PWD/../common/main.cpp \
  15. ../../include/msgtype/brainstate.pb.cc \
  16. ../../include/msgtype/decition.pb.cc \
  17. ../../include/msgtype/radarobjectarray.pb.cc \
  18. ../../include/msgtype/radarobject.pb.cc \
  19. ../../include/msgtype/gpsimu.pb.cc \
  20. ../../include/msgtype/mapreq.pb.cc \
  21. ../../include/msgtype/hmi.pb.cc \
  22. ../../include/msgtype/chassis.pb.cc \
  23. ../../include/msgtype/vbox.pb.cc \
  24. ../../include/msgtype/radio_send.pb.cc \
  25. ../../include/msgtype/formation_map.pb.cc \
  26. ../../include/msgtype/v2x.pb.cc \
  27. ../../include/msgtype/ultrasonic.pb.cc
  28. include($$PWD/../common/common/common.pri)
  29. include($$PWD/decition/decition.pri)
  30. include($$PWD/../common/perception/perception.pri)
  31. #include(platform/platform.pri)
  32. INCLUDEPATH += $$PWD/../common
  33. !include(../../../include/common.pri ) {
  34. error( "Couldn't find the common.pri file!" )
  35. }
  36. !include(../../../include/ivprotobuf.pri ) {
  37. error( "Couldn't find the ivprotobuf.pri file!" )
  38. }
  39. !include(../../../include/ivboost.pri ) {
  40. error( "Couldn't find the ivboost.pri file!" )
  41. }
  42. !include(../../../include/iveigen.pri ) {
  43. error( "Couldn't find the iveigen.pri file!" )
  44. }
  45. unix:!macx: INCLUDEPATH += $$PWD/.
  46. unix:!macx: DEPENDPATH += $$PWD/.
  47. HEADERS += \
  48. ../../include/msgtype/brainstate.pb.h \
  49. ../../include/msgtype/decition.pb.h \
  50. ../../include/msgtype/radarobjectarray.pb.h \
  51. ../../include/msgtype/radarobject.pb.h \
  52. ../../include/msgtype/gpsimu.pb.h \
  53. ../../include/msgtype/mapreq.pb.h \
  54. ../../include/msgtype/hmi.pb.h \
  55. ../../include/msgtype/vbox.pb.h \
  56. ../common/common/roadmode_type.h \
  57. ../../include/msgtype/chassis.pb.h \
  58. ../../include/msgtype/radio_send.pb.h \
  59. ../../include/msgtype/formation_map.pb.h \
  60. ../../include/msgtype/v2x.pb.h \
  61. ../../include/msgtype/ultrasonic.pb.h \