openLog.pro 2.0 KB

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