Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

61 řádky
1.7 KiB

  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2024-07-23T14:12:59
  4. #
  5. #-------------------------------------------------
  6. QT += core gui xlsx
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = ZTStats
  9. TEMPLATE = app
  10. # The following define makes your compiler emit warnings if you use
  11. # any feature of Qt which as been marked as deprecated (the exact warnings
  12. # depend on your compiler). Please consult the documentation of the
  13. # deprecated API in order to know how to port your code away from it.
  14. DEFINES += QT_DEPRECATED_WARNINGS
  15. # You can also make your code fail to compile if you use deprecated APIs.
  16. # In order to do so, uncomment the following line.
  17. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  18. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  19. SOURCES +=\
  20. Sources/main.cpp \
  21. Sources/MainWindow.cpp \
  22. Sources/DirParserThread.cpp \
  23. Sources/ZTLogFilesMgr.cpp \
  24. Sources/ZTData.cpp \
  25. Sources/TrainLogFileMgr.cpp \
  26. Sources/LogMgr.cpp \
  27. Sources/ReportPage.cpp \
  28. Sources/SettingsPage.cpp \
  29. Sources/ReportSettingsData.cpp \
  30. Sources/ReportGenerator.cpp \
  31. Sources/ZTStats.cpp
  32. HEADERS += \
  33. Sources/MainWindow.h \
  34. Sources/DirParserThread.h \
  35. Sources/GlobalDefine.h \
  36. Sources/ZTLogFilesMgr.h \
  37. Sources/ZTData.h \
  38. Sources/TrainLogFileMgr.h \
  39. Sources/LogMgr.h \
  40. Sources/ReportPage.h \
  41. Sources/SettingsPage.h \
  42. Sources/ReportSettingsData.h \
  43. Sources/ReportGenerator.h \
  44. Sources/ZTStats.h \
  45. Sources/version.h
  46. Sources/MainWindow.h
  47. FORMS += MainWindow.ui \
  48. ReportPage.ui \
  49. Sources/SettingsPage.ui
  50. INCLUDEPATH += PWD/Sources\