NSIS-如何将命令行参数发送到nsi文件
我是 NSIS 脚本的新手。我想将版本号发送到我的 test.nsi 文件 但它不起作用。在我的 test.nsi 文件中,版本的值为:test.nsi。 该命令的正确语法是什么?
“C:\Program Files\NSIS\makensis.exe”-DVERSION=1.2.1 test.nsi
谢谢,
Jdang
I am new to NSIS script. I want to send the version number to my test.nsi file
but it does not work. Inside my test.nsi file, the value of version is: test.nsi.
What is the correct syntax for this command?
"C:\Program Files\NSIS\makensis.exe" -DVERSION=1.2.1 test.nsi
thanks,
Jdang
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文档非常清楚
http://nsis.sourceforge.net/Docs/Chapter3.html
您应该使用 / 而不是 - 作为参数名称的前缀,这样您的命令就变成
The documentation is quite clear
http://nsis.sourceforge.net/Docs/Chapter3.html
You should be using a / rather than a - to prefix the parameter name so your command becomes