123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- QT += core gui
- QT += designer
- greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
- TARGET = ky_gui
- TEMPLATE = app
- DEFINES += QT_DEPRECATED_WARNINGS
- CONFIG += c++17
- SOURCES += \
- src/argdialog.cpp \
- src/consoledialog.cpp \
- src/main.cpp \
- src/mainwindow.cpp \
- src/client.cpp \
- src/connection_indicator.cpp
- HEADERS += \
- include/argdialog.h \
- include/consoledialog.h \
- include/mainwindow.h \
- include/client.hpp \
- headers/ktextedit.hpp \
- headers/kmessage_codec.hpp \
- headers/json.hpp \
- headers/util.hpp \
- headers/rapidjson/writer.h \
- headers/rapidjson/stringbuffer.h \
- headers/rapidjson/document.h \
- include/connection_indicator.h
- FORMS += \
- argdialog.ui \
- consoledialog.ui \
- mainwindow.ui
- qnx: target.path = /tmp/$${TARGET}/bin
- else: unix:!android: target.path = /opt/$${TARGET}/bin
- RESOURCES += \
- kres.qrc
|