openLog.pro 1.8 KB

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