From 4f2740fbafa6244e1f05cbc743f110f800a6ff6f Mon Sep 17 00:00:00 2001 From: LHY0125 <3364451258@qq.com> Date: Wed, 8 Oct 2025 00:32:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0README.md=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=E7=BB=93=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在项目结构中添加installer目录 - 包含Inno Setup和NSIS安装脚本 - 显示安装包输出目录和生成的安装包文件 --- README.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/README.md b/README.md index 0a42f64..76416ef 100644 --- a/README.md +++ b/README.md @@ -178,6 +178,12 @@ Stu_scores_system/ (v4.1.0 标准化目录结构) │ ├── types.h # 统一数据类型定义 │ ├── user_manage.h # 用户管理 │ └── validation.h # 数据验证工具库 +├── 📁 installer/ # 安装包管理目录 +│ ├── installer.iss # Inno Setup安装脚本 +│ ├── installer.nsi # NSIS安装脚本 +│ └── 📁 dist/ # 安装包输出目录 +│ ├── StudentGradeSystem_Inno_Setup.exe # Inno Setup安装包 +│ └── StudentGradeSystem_NSIS_Setup.exe # NSIS安装包 ├── 📁 src/ # 源文件目录 │ ├── core_handlers.c # 核心处理器 │ ├── file_utils.c # 文件操作工具库