openLog.pro 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. QT += core gui sql
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++17
  4. TARGET = openLog
  5. RESOURCES = themes/breeze.qrc \
  6. themes/icons/icons.qrc
  7. # The following define makes your compiler emit warnings if you use
  8. # any Qt feature that has been marked deprecated (the exact warnings
  9. # depend on your compiler). Please consult the documentation of the
  10. # deprecated API in order to know how to port your code away from it.
  11. DEFINES += QT_DEPRECATED_WARNINGS
  12. #DEFINES *= QT_USE_QSTRINGBUILDER # more efficient use of string concatenation
  13. # You can also make your code fail to compile if it uses deprecated APIs.
  14. # In order to do so, uncomment the following line.
  15. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  16. DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  17. SOURCES += \
  18. calc.cpp \
  19. dbaircraft.cpp \
  20. dbairport.cpp \
  21. dbflight.cpp \
  22. dbpilots.cpp \
  23. dbsettings.cpp \
  24. dbsetup.cpp \
  25. dbstat.cpp \
  26. dbvalidate.cpp \
  27. easaview.cpp \
  28. editflight.cpp \
  29. flight.cpp \
  30. homewidget.cpp \
  31. logbookwidget.cpp \
  32. main.cpp \
  33. mainwindow.cpp \
  34. newacft.cpp \
  35. newflight.cpp \
  36. settingswidget.cpp \
  37. showaircraftlist.cpp \
  38. strictregularexpressionvalidator.cpp \
  39. HEADERS += \
  40. calc.h \
  41. dbaircraft.h \
  42. dbairport.h \
  43. dbapi.h \
  44. dbflight.h \
  45. dbpilots.h \
  46. dbsettings.h \
  47. dbsetup.h \
  48. dbstat.h \
  49. dbvalidate.h \
  50. easaview.h \
  51. editflight.h \
  52. flight.h \
  53. homewidget.h \
  54. logbookwidget.h \
  55. mainwindow.h \
  56. newacft.h \
  57. newflight.h \
  58. settingswidget.h \
  59. showaircraftlist.h \
  60. strictregularexpressionvalidator.h \
  61. FORMS += \
  62. easaview.ui \
  63. editflight.ui \
  64. homewidget.ui \
  65. logbookwidget.ui \
  66. mainwindow.ui \
  67. newacft.ui \
  68. newflight.ui \
  69. settingswidget.ui \
  70. showaircraftlist.ui \
  71. # Default rules for deployment.
  72. qnx: target.path = /tmp/$${TARGET}/bin
  73. else: unix:!android: target.path = /opt/$${TARGET}/bin
  74. !isEmpty(target.path): INSTALLS += target
  75. DISTFILES += \
  76. Scratchpad