这是我第一次使用 Inno Setup。我在 ANT 脚本中包含 Inno Setup:
<target name="generate-installer-exe" depends="generate-exe">
<exec executable="C:/Program Files (x86)/Inno Setup 5/ISCC.exe">
<arg value="${etc.dir}/innoSetup_config.iss"/>
<arg value="/dMySourcePath=${deployment.dir}"/>
</exec>
</target>
它在其中创建输出和 setup.exe,${etc.dir}
因为那是我的 .iss 文件所在的位置,但我希望它编译为${deployment.dir}
. 无论如何通过传递参数来动态更改编译目录还是我需要通过 ANT 移动文件?