timmyCompanion.pro 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.3.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. loadingcolortab.cpp \
  26. dialogboxestab.cpp
  27. HEADERS += mainwindow.h \
  28. utils.h \
  29. textcolortab.h \
  30. themeinfotab.h \
  31. loadingcolortab.h \
  32. dialogboxestab.h
  33. FORMS += mainwindow.ui
  34. RESOURCES += \
  35. app.qrc