openLog.pro 1.5 KB

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