This commit is contained in:
2023-12-26 16:38:19 +08:00
commit cfc7804e38
222 changed files with 1347 additions and 0 deletions
+42
View File
@@ -0,0 +1,42 @@
QT += network core gui gui-private
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets printsupport
CONFIG += c++17
TEMPLATE = app
#CONFIG+= console
#生成目录
unix {
DESTDIR = $$PWD/../../Build/bin
}
win32 {
DESTDIR = $$PWD/../../Build/release
}
MOC_DIR = $$PWD/Build/moc
OBJECTS_DIR = $$PWD/Build/objs
RCC_DIR = $$PWD/Build/resources
UI_DIR = $$PWD/Build/ui
FORMS += \
$$PWD/Src/updaterdialog.ui
HEADERS += \
$$PWD/Src/downloader.h \
$$PWD/Src/updaterdialog.h
SOURCES += \
$$PWD/Src/downloader.cpp \
$$PWD/Src/updaterdialog.cpp \
$$PWD/Src/main.cpp
RESOURCES += \
Resources/dark/darkstyle.qrc \
Resources/res.qrc
win32 {
RC_ICONS += $$PWD/Resources/140xfd.ico
}