* fix MSI build

This commit is contained in:
Reinhard Pointner 2015-10-16 18:08:55 +00:00
parent e26485b451
commit 9ae6591a45
2 changed files with 2 additions and 2 deletions

View File

@ -509,11 +509,11 @@
<target name="msi" description="Build Windows Installer for x86 and x64">
<antcall target="msi-arch">
<param name="arch" value="x86" />
<param name="libgcc_name" value="mingwm10.dll" />
<param name="libgcc_name" value="libgcc_s_seh-1.dll" />
</antcall>
<antcall target="msi-arch">
<param name="arch" value="x64" />
<param name="libgcc_name" value="libgcc_s_sjlj-1.dll" />
<param name="libgcc_name" value="libgcc_s_seh-1.dll" />
</antcall>
</target>

View File