openLog.pro 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. themes/images/images.qrc
  8. # The following define makes your compiler emit warnings if you use
  9. # any Qt feature that has been marked deprecated (the exact warnings
  10. # depend on your compiler). Please consult the documentation of the
  11. # deprecated API in order to know how to port your code away from it.
  12. DEFINES += QT_DEPRECATED_WARNINGS
  13. DEFINES *= QT_USE_QSTRINGBUILDER # more efficient use of string concatenation
  14. # You can also make your code fail to compile if it uses deprecated APIs.
  15. # In order to do so, uncomment the following line.
  16. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  17. DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  18. SOURCES += \
  19. calc.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. dbairport.h \
  39. dbflight.h \
  40. dbpilots.h \
  41. dbsettings.h \
  42. dbstat.h \
  43. easaview.h \
  44. editflight.h \
  45. homewidget.h \
  46. logbookwidget.h \
  47. mainwindow.h \
  48. newacft.h \
  49. newflight.h \
  50. settingswidget.h \
  51. showaircraftlist.h \
  52. FORMS += \
  53. easaview.ui \
  54. editflight.ui \
  55. homewidget.ui \
  56. logbookwidget.ui \
  57. mainwindow.ui \
  58. newacft.ui \
  59. newflight.ui \
  60. settingswidget.ui \
  61. showaircraftlist.ui \
  62. # Default rules for deployment.
  63. qnx: target.path = /tmp/$${TARGET}/bin
  64. else: unix:!android: target.path = /opt/$${TARGET}/bin
  65. !isEmpty(target.path): INSTALLS += target
  66. DISTFILES += \
  67. Scratchpad