openLog.pro 2.0 KB

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