openLog.pro 1.8 KB

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