timmyCompanion.pro 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2017-05-18T17:16:43
  4. #
  5. #-------------------------------------------------
  6. QT += core gui network
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = timmyCompanion
  9. TEMPLATE = app
  10. DEFINES += APP_VERSION=\\\"1.0.0\\\"
  11. # The following define makes your compiler emit warnings if you use
  12. # any feature of Qt which as been marked as deprecated (the exact warnings
  13. # depend on your compiler). Please consult the documentation of the
  14. # deprecated API in order to know how to port your code away from it.
  15. DEFINES += QT_DEPRECATED_WARNINGS
  16. # You can also make your code fail to compile if you use deprecated APIs.
  17. # In order to do so, uncomment the following line.
  18. # You can also select to disable deprecated APIs only up to a certain version of Qt.
  19. #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
  20. SOURCES += main.cpp\
  21. mainwindow.cpp \
  22. utils.cpp \
  23. textcolortab.cpp \
  24. themeinfotab.cpp
  25. HEADERS += mainwindow.h \
  26. utils.h \
  27. textcolortab.h \
  28. themeinfotab.h
  29. FORMS += mainwindow.ui
  30. RESOURCES += \
  31. app.qrc