odtohdmap.pro 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. QT += core gui
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++17
  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. main.cpp \
  9. mainwindow.cpp \
  10. odtohdmap.cpp \
  11. odtohdmapini.cpp
  12. HEADERS += \
  13. mainwindow.h \
  14. odtohdmap.h \
  15. odtohdmapini.h
  16. FORMS += \
  17. mainwindow.ui
  18. !include(../../common/common/xodr/OpenDrive/OpenDrive.pri ) {
  19. error( "Couldn't find the OpenDrive.pri file!" )
  20. }
  21. !include(../../common/common/xodr/TinyXML/TinyXML.pri ) {
  22. error( "Couldn't find the TinyXML.pri file!" )
  23. }
  24. !include(../../common/common/xodr/odaux/odaux.pri ) {
  25. error( "Couldn't find the odaux.pri file!" )
  26. }
  27. INCLUDEPATH += $$PWD/../../common/common/xodr
  28. INCLUDEPATH += $$PWD/../../common/common
  29. INCLUDEPATH += $$PWD/../../common/common/xodr/odaux
  30. # Default rules for deployment.
  31. qnx: target.path = /tmp/$${TARGET}/bin
  32. else: unix:!android: target.path = /opt/$${TARGET}/bin
  33. !isEmpty(target.path): INSTALLS += target