openLog.pro 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. QT += core gui sql
  2. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  3. CONFIG += c++11
  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. 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. FORMS += \
  54. easaview.ui \
  55. editflight.ui \
  56. homewidget.ui \
  57. logbookwidget.ui \
  58. mainwindow.ui \
  59. newacft.ui \
  60. newflight.ui \
  61. settingswidget.ui \
  62. showaircraftlist.ui \
  63. # Default rules for deployment.
  64. qnx: target.path = /tmp/$${TARGET}/bin
  65. else: unix:!android: target.path = /opt/$${TARGET}/bin
  66. !isEmpty(target.path): INSTALLS += target
  67. DISTFILES += \
  68. Scratchpad