openLog.pro 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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. # The following define makes your compiler emit warnings if you use
  8. # any Qt feature that has been marked deprecated (the exact warnings
  9. # depend on your compiler). Please consult the documentation of the
  10. # deprecated API in order to know how to port your code away from it.
  11. DEFINES += QT_DEPRECATED_WARNINGS
  12. # You can also make your code fail to compile if it uses deprecated APIs.
  13. # In order to do so, uncomment the following line.
  14. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  15. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  16. SOURCES += \
  17. calc.cpp \
  18. dbman.cpp \
  19. easaview.cpp \
  20. editflight.cpp \
  21. homewidget.cpp \
  22. logbookwidget.cpp \
  23. main.cpp \
  24. mainwindow.cpp \
  25. newacft.cpp \
  26. newflight.cpp \
  27. settingswidget.cpp \
  28. showaircraftlist.cpp \
  29. HEADERS += \
  30. calc.h \
  31. easaview.h \
  32. editflight.h \
  33. homewidget.h \
  34. logbookwidget.h \
  35. mainwindow.h \
  36. newacft.h \
  37. newflight.h \
  38. settingswidget.h \
  39. showaircraftlist.h \
  40. FORMS += \
  41. easaview.ui \
  42. editflight.ui \
  43. homewidget.ui \
  44. logbookwidget.ui \
  45. mainwindow.ui \
  46. newacft.ui \
  47. newflight.ui \
  48. settingswidget.ui \
  49. showaircraftlist.ui \
  50. # Default rules for deployment.
  51. qnx: target.path = /tmp/$${TARGET}/bin
  52. else: unix:!android: target.path = /opt/$${TARGET}/bin
  53. !isEmpty(target.path): INSTALLS += target
  54. DISTFILES += \
  55. Scratchpad