This commit is contained in:
2025-10-21 23:47:29 +08:00
parent 908cda34e6
commit 431a94a4fb
97 changed files with 34329 additions and 0 deletions

28
C++/2.3.0/untitled2.pro Normal file
View File

@@ -0,0 +1,28 @@
QT += network concurrent widgets
CONFIG += c++17
SOURCES += \
main.cpp \
mainwindow.cpp
HEADERS += \
mainwindow.h
# 添加资源文件
RESOURCES += resources.qrc
# 添加版本信息
VERSION = 2.3.0
win32 {
# 链接必要的 Windows
LIBS += -ladvapi32 -luser32 -lshell32 -lkernel32
DEPLOYMENT += 7z
7z.path = $$OUT_PWD
7z.files = $$PWD/7z/*
INSTALLS += 7z
# 生成资源文件
RC_FILE = launcher.rc
}