tool_calcgps.pro 762 B

123456789101112131415161718192021222324252627282930
  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. ../../common/common/math/gnss_coordinate_convert.cpp \
  9. main.cpp \
  10. mainwindow.cpp
  11. HEADERS += \
  12. ../../common/common/math/gnss_coordinate_convert.h \
  13. mainwindow.h
  14. FORMS += \
  15. mainwindow.ui
  16. # Default rules for deployment.
  17. qnx: target.path = /tmp/$${TARGET}/bin
  18. else: unix:!android: target.path = /opt/$${TARGET}/bin
  19. !isEmpty(target.path): INSTALLS += target
  20. INCLUDEPATH += $$PWD/../../common/common
  21. RESOURCES +=