map_collectfromveh.pro 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. QT += core gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++11
  4. # You can make your code fail to compile if it uses deprecated APIs.
  5. # In order to do so, uncomment the following line.
  6. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  7. SOURCES += \
  8. ../../common/common/math/gnss_coordinate_convert.cpp \
  9. ../../include/msgtype/collectveh.pb.cc \
  10. ../../include/msgtype/gpsimu.pb.cc \
  11. ../map_lanetoxodr/TinyXML/tinystr.cpp \
  12. ../map_lanetoxodr/TinyXML/tinyxml.cpp \
  13. ../map_lanetoxodr/TinyXML/tinyxmlerror.cpp \
  14. ../map_lanetoxodr/TinyXML/tinyxmlparser.cpp \
  15. ../map_lanetoxodr/autoconnect.cpp \
  16. ../map_lanetoxodr/circlefitting.cpp \
  17. ../map_lanetoxodr/const.cpp \
  18. ../map_lanetoxodr/fresnl.cpp \
  19. ../map_lanetoxodr/geofit.cpp \
  20. ../map_lanetoxodr/polevl.c \
  21. collectconvert.cpp \
  22. commif.cpp \
  23. dialogconvert.cpp \
  24. editwin.cpp \
  25. lineitem.cpp \
  26. main.cpp \
  27. mainwindow.cpp \
  28. myview.cpp
  29. HEADERS += \
  30. ../../common/common/math/gnss_coordinate_convert.h \
  31. ../../include/msgtype/collectveh.pb.h \
  32. ../../include/msgtype/gpsimu.pb.h \
  33. ../map_lanetoxodr/TinyXML/tinystr.h \
  34. ../map_lanetoxodr/TinyXML/tinyxml.h \
  35. ../map_lanetoxodr/autoconnect.h \
  36. ../map_lanetoxodr/circlefitting.h \
  37. ../map_lanetoxodr/geofit.h \
  38. collectconvert.h \
  39. commif.h \
  40. dialogconvert.h \
  41. editwin.h \
  42. lineitem.h \
  43. mainwindow.h \
  44. myview.h
  45. FORMS += \
  46. dialogconvert.ui \
  47. editwin.ui \
  48. mainwindow.ui
  49. # Default rules for deployment.
  50. qnx: target.path = /tmp/$${TARGET}/bin
  51. else: unix:!android: target.path = /opt/$${TARGET}/bin
  52. !isEmpty(target.path): INSTALLS += target
  53. !include(../../../include/common.pri ) {
  54. error( "Couldn't find the common.pri file!" )
  55. }
  56. !include(../../../include/ivprotobuf.pri ) {
  57. error( "Couldn't find the ivprotobuf.pri file!" )
  58. }
  59. !include(../../common/common/xodr/OpenDrive/OpenDrive.pri ) {
  60. error( "Couldn't find the OpenDrive.pri file!" )
  61. }
  62. !include(../../common/common/xodr/xodrfunc/xodrfunc.pri ) {
  63. error( "Couldn't find the xodrfunc.pri file!" )
  64. }
  65. INCLUDEPATH += $$PWD/../../common/common/xodr
  66. INCLUDEPATH += $$PWD/../../common/common/license
  67. INCLUDEPATH += $$PWD/../../common/common/xodr/xodrfunc
  68. INCLUDEPATH += ../../common/common/math
  69. INCLUDEPATH += ../map_lanetoxodr
  70. unix:INCLUDEPATH += /usr/include/eigen3
  71. win32:INCLUDEPATH += D:\File\soft\eigen
  72. RESOURCES += \
  73. editwin.qrc
  74. DISTFILES += \
  75. ../map_lanetoxodr/TinyXML/TinyXML.pri