openLog.pro 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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. dbflight.cpp \
  21. dbman.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. HEADERS += \
  36. calc.h \
  37. dbflight.h \
  38. dbpilots.h \
  39. dbsettings.h \
  40. dbstat.h \
  41. easaview.h \
  42. editflight.h \
  43. homewidget.h \
  44. logbookwidget.h \
  45. mainwindow.h \
  46. newacft.h \
  47. newflight.h \
  48. settingswidget.h \
  49. showaircraftlist.h \
  50. FORMS += \
  51. easaview.ui \
  52. editflight.ui \
  53. homewidget.ui \
  54. logbookwidget.ui \
  55. mainwindow.ui \
  56. newacft.ui \
  57. newflight.ui \
  58. settingswidget.ui \
  59. showaircraftlist.ui \
  60. # Default rules for deployment.
  61. qnx: target.path = /tmp/$${TARGET}/bin
  62. else: unix:!android: target.path = /opt/$${TARGET}/bin
  63. !isEmpty(target.path): INSTALLS += target
  64. DISTFILES += \
  65. Scratchpad