40 lines
878 B
Prolog
40 lines
878 B
Prolog
QT += core gui widgets
|
|
QT += network
|
|
|
|
CONFIG -= debug_and_release
|
|
CONFIG += c++17
|
|
|
|
LIBS += -lwinmm
|
|
LIBS += -lDbghelp
|
|
|
|
RESOURCES += res.qrc
|
|
|
|
win32:RC_ICONS = icon.ico
|
|
|
|
# You can make your code fail to compile if it uses deprecated APIs.
|
|
# In order to do so, uncomment the following line.
|
|
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
|
|
|
|
SOURCES += \
|
|
gutil/qcore.cpp \
|
|
gutil/qgui.cpp \
|
|
gutil/qjson.cpp \
|
|
gutil/qnetwork.cpp \
|
|
gutil/qwaitingdlg.cpp \
|
|
main.cpp \
|
|
mainwindow.cpp
|
|
|
|
HEADERS += \
|
|
gutil/qcore.h \
|
|
gutil/qgui.h \
|
|
gutil/qjson.h \
|
|
gutil/qnetwork.h \
|
|
gutil/qwaitingdlg.h \
|
|
main.h \
|
|
mainwindow.h
|
|
|
|
# Default rules for deployment.
|
|
qnx: target.path = /tmp/$${TARGET}/bin
|
|
else: unix:!android: target.path = /opt/$${TARGET}/bin
|
|
!isEmpty(target.path): INSTALLS += target
|