openLog.pro 1.9 KB

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