openLog.pro 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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. easaview.cpp \
  27. editflight.cpp \
  28. flight.cpp \
  29. homewidget.cpp \
  30. logbookwidget.cpp \
  31. main.cpp \
  32. mainwindow.cpp \
  33. newacft.cpp \
  34. newflight.cpp \
  35. settingswidget.cpp \
  36. showaircraftlist.cpp \
  37. strictregularexpressionvalidator.cpp \
  38. HEADERS += \
  39. calc.h \
  40. dbaircraft.h \
  41. dbairport.h \
  42. dbflight.h \
  43. dbpilots.h \
  44. dbsettings.h \
  45. dbsetup.h \
  46. dbstat.h \
  47. easaview.h \
  48. editflight.h \
  49. flight.h \
  50. homewidget.h \
  51. logbookwidget.h \
  52. mainwindow.h \
  53. newacft.h \
  54. newflight.h \
  55. settingswidget.h \
  56. showaircraftlist.h \
  57. strictregularexpressionvalidator.h \
  58. FORMS += \
  59. easaview.ui \
  60. editflight.ui \
  61. homewidget.ui \
  62. logbookwidget.ui \
  63. mainwindow.ui \
  64. newacft.ui \
  65. newflight.ui \
  66. settingswidget.ui \
  67. showaircraftlist.ui \
  68. # Default rules for deployment.
  69. qnx: target.path = /tmp/$${TARGET}/bin
  70. else: unix:!android: target.path = /opt/$${TARGET}/bin
  71. !isEmpty(target.path): INSTALLS += target
  72. DISTFILES += \
  73. Scratchpad