G.1 常规构建
优质
小牛编辑
130浏览
2023-12-01
源代码可以在 CVS 找到并且和 NSIS 发行版本分离。
要构建 NSIS 首先要安装 Python 和 SCons。目前,支持的 SCons 版本是 0.96.91。任何高于 1.6 的 Python 版本只可以支持。
要开始构建,首先打开控制台,更改工作目录到 NSIS 根目录并输入 scons 然后回车。像下面这样:
C:\>cd dev\nsis C:\dev\nsis>scons scons: Reading SConscript files ... Using Microsoft tools configuration Checking for main() in C library gdi32... (cached) yes Checking for main() in C library user32... (cached) yes Checking for main() in C library version... (cached) yes Checking for main() in C library pthread... (cached) no Checking for main() in C library stdc++... (cached) no Checking for main() in C library iconv... (cached) no Checking for main() in C library libiconv... (cached) no scons: done reading SConscript files. scons: Building targets ... ...
要安装构建文件,输入:
scons PREFIX="C:\Program Files\NSIS" install
要创建安装程序 (仅在 Windows 上),输入:
scons dist-installer
要创建发行的 ZIP 文件,输入:
scons dist-zip
都要创建,输入:
scons dist
要获取系统提供的完整选项列表,输入:
scons -h
要获取 SCons 提供的完整选项列表,输入:
scons -H