qt_demoe/tool/nettool/nettool.pro

32 lines
596 B
Prolog
Raw Permalink Normal View History

2021-07-02 09:19:02 +00:00
QT += core gui network
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets
#判断是否有websocket模块
qtHaveModule(websockets) {
QT += websockets
DEFINES += websocket
}}
2019-09-29 05:13:01 +00:00
2021-05-30 07:59:42 +00:00
greaterThan(QT_MAJOR_VERSION, 5): QT += core5compat
TARGET = nettool
TEMPLATE = app
2021-11-03 06:13:56 +00:00
RC_FILE = qrc/main.rc
wasm {
2021-11-03 06:13:56 +00:00
RESOURCES += qrc/font.qrc
} else {
DESTDIR = $$PWD/../bin
}
2019-09-29 05:13:01 +00:00
HEADERS += head.h
2021-11-17 07:33:19 +00:00
SOURCES += main.cpp
2021-11-03 06:13:56 +00:00
RESOURCES += qrc/main.qrc
2021-11-17 07:33:19 +00:00
CONFIG += warn_off
2019-09-29 05:13:01 +00:00
INCLUDEPATH += $$PWD
INCLUDEPATH += $$PWD/api
INCLUDEPATH += $$PWD/form
2019-09-29 05:13:01 +00:00
include ($$PWD/api/api.pri)
include ($$PWD/form/form.pri)