ky_gui.pro 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. #-------------------------------------------------
  2. #
  3. # Project created by QtCreator 2019-06-22T17:19:11
  4. #
  5. #-------------------------------------------------
  6. QT += core gui
  7. greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
  8. TARGET = ky_gui
  9. TEMPLATE = app
  10. # The following define makes your compiler emit warnings if you use
  11. # any feature of Qt which has 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. CONFIG += c++17
  20. CONFIG += static
  21. QMAKE_CXXFLAGS += "-fno-sized-deallocation"
  22. SOURCES += \
  23. src/main.cpp \
  24. src/mainwindow.cpp \
  25. src/client.cpp \
  26. src/instagram_task.cpp \
  27. src/generic_task.cpp \
  28. src/argdialog.cpp \
  29. src/messagedialog.cpp \
  30. src/connection_indicator.cpp \
  31. src/kfiledialog.cpp \
  32. src/connection_indicator.cpp
  33. HEADERS += \
  34. include/ui/argdialog.h \
  35. include/ui/messagedialog.hpp \
  36. include/ui/mainwindow.h \
  37. include/ui/connection_indicator.h \
  38. include/ui/kfiledialog.h \
  39. include/client/client.hpp \
  40. include/task/task.hpp \
  41. include/task/instagram_task.hpp\
  42. include/task/generic_task.hpp\
  43. headers/kmessage_codec.hpp \
  44. headers/instatask_generated.h \
  45. headers/generictask_generated.h \
  46. headers/util.hpp \
  47. headers/kiq_types.hpp \
  48. headers/rapidjson/writer.h \
  49. headers/rapidjson/stringbuffer.h \
  50. headers/rapidjson/document.h
  51. FORMS += \
  52. argdialog.ui \
  53. consoledialog.ui \
  54. mainwindow.ui \
  55. messagedialog.ui
  56. # Default rules for deployment.
  57. qnx: target.path = /tmp/$${TARGET}/bin
  58. else: unix:!android: target.path = /opt/$${TARGET}/bin
  59. !isEmpty(target.path): INSTALLS += target
  60. RESOURCES += \
  61. kres.qrc