driver_map_xodrload.pro 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. QT -= gui
  2. QT += xml dbus
  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. QMAKE_CXXFLAGS += -g
  11. # You can also make your code fail to compile if you use deprecated APIs.
  12. # In order to do so, uncomment the following line.
  13. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  14. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  15. SOURCES += main.cpp \
  16. ../../include/msgtype/v2x.pb.cc \
  17. fresnl.cpp \
  18. const.cpp \
  19. polevl.c \
  20. globalplan.cpp \
  21. dubins.c \
  22. ../../include/msgtype/gps.pb.cc \
  23. ../../include/msgtype/gpsimu.pb.cc \
  24. ../../include/msgtype/imu.pb.cc \
  25. gnss_coordinate_convert.cpp \
  26. xodrplan.cpp \
  27. ../../include/msgtype/mapdata.pb.cc
  28. HEADERS += \
  29. ../../../include/ivexit.h \
  30. ../../include/msgtype/v2x.pb.h \
  31. mconf.h \
  32. globalplan.h \
  33. gps_type.h \
  34. dubins.h \
  35. ../../include/msgtype/gps.pb.h \
  36. ../../include/msgtype/gpsimu.pb.h \
  37. ../../include/msgtype/imu.pb.h \
  38. gnss_coordinate_convert.h \
  39. planpoint.h \
  40. xodrplan.h \
  41. ../../include/msgtype/mapdata.pb.h
  42. !include(../../../include/common.pri ) {
  43. error( "Couldn't find the common.pri file!" )
  44. }
  45. !include(../../../include/ivprotobuf.pri ) {
  46. error( "Couldn't find the ivprotobuf.pri file!" )
  47. }
  48. !include(../../../include/ivboost.pri ) {
  49. error( "Couldn't find the ivboost.pri file!" )
  50. }
  51. !include(../../../include/iveigen.pri ) {
  52. error( "Couldn't find the iveigen.pri file!" )
  53. }
  54. !include(../../common/common/xodr/OpenDrive/OpenDrive.pri ) {
  55. error( "Couldn't find the OpenDrive.pri file!" )
  56. }
  57. !include(../../common/common/xodr/TinyXML/TinyXML.pri ) {
  58. error( "Couldn't find the TinyXML.pri file!" )
  59. }
  60. !include(../../common/common/xodr/xodrfunc/xodrfunc.pri ) {
  61. error( "Couldn't find the xodrfunc.pri file!" )
  62. }
  63. INCLUDEPATH += $$PWD/../../common/common/xodr
  64. INCLUDEPATH += $$PWD/../../common/common/xodr/xodrfunc