openLog.pro 1.6 KB

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