tool_xodrobj.pro 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2019-08-23T15:28:22
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = tool_xodrobj
  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. SOURCES += \
  20. main.cpp \
  21. mainwindow.cpp \
  22. xodr.cpp \
  23. myview.cpp \
  24. linedata.cpp \
  25. fresnl.cpp \
  26. polevl.c \
  27. const.cpp \
  28. gnss_coordinate_convert.cpp
  29. HEADERS += \
  30. mainwindow.h \
  31. xodr.h \
  32. myview.h \
  33. boost.h \
  34. gps_type.h \
  35. linedata.h \
  36. gnss_coordinate_convert.h
  37. FORMS += \
  38. mainwindow.ui
  39. !include(../../../include/common.pri ) {
  40. error( "Couldn't find the common.pri file!" )
  41. }
  42. !include(../../../include/ivprotobuf.pri ) {
  43. error( "Couldn't find the ivprotobuf.pri file!" )
  44. }
  45. !include(../../../include/ivboost.pri ) {
  46. error( "Couldn't find the ivboost.pri file!" )
  47. }
  48. !include(../../common/common/xodr/OpenDrive/OpenDrive.pri ) {
  49. error( "Couldn't find the OpenDrive.pri file!" )
  50. }
  51. !include(../../common/common/xodr/TinyXML/TinyXML.pri ) {
  52. error( "Couldn't find the TinyXML.pri file!" )
  53. }
  54. INCLUDEPATH += $$PWD/../../common/common/xodr
  55. DISTFILES += \
  56. geodata.proto
  57. LIBS += -livprotoif
  58. #DEFINES += USE_UTM
  59. if(contains(DEFINES,USE_UTM)){
  60. LIBS += -lGeographic
  61. }