1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05:00

Try to fix 32-bit MWS support

This commit is contained in:
Reinhard Pointner 2018-08-12 12:32:38 +07:00
parent eff492c3ed
commit 1dd80333bf
2 changed files with 4 additions and 4 deletions

View File

@ -261,7 +261,8 @@
<target name="appx" depends="revision" description="Build Windows 10 package"> <target name="appx" depends="revision" description="Build Windows 10 package">
<property name="appx.arch" value="x64" /> <property name="appx.arch" value="x64" />
<property name="dir.staging" location="${dir.dist}/appx" />
<property name="dir.staging" location="${dir.dist}/appx/${appx.arch}" />
<copy todir="${dir.staging}"> <copy todir="${dir.staging}">
<fileset dir="${dir.installer}/appx/${appx.arch}" includes="*.exe" /> <fileset dir="${dir.installer}/appx/${appx.arch}" includes="*.exe" />
@ -278,7 +279,7 @@
<!-- copy files and resolve ant variables --> <!-- copy files and resolve ant variables -->
<copy-replace todir="${dir.staging}"> <copy-replace todir="${dir.staging}">
<fileset dir="${dir.installer}/appx" includes="*.xml, *.ini" excludes="*.l4j.xml" /> <fileset dir="${dir.installer}/appx" includes="*.xml, *.ini" />
</copy-replace> </copy-replace>
<!-- fetch latest JRE --> <!-- fetch latest JRE -->
@ -289,7 +290,6 @@
<fileset dir="${dir.staging}/jre" includes="**/*120*.dll" /> <fileset dir="${dir.staging}/jre" includes="**/*120*.dll" />
</delete> </delete>
<!-- package APPX --> <!-- package APPX -->
<exec executable="makepri" dir="${dir.staging}" failonerror="yes"> <exec executable="makepri" dir="${dir.staging}" failonerror="yes">
<arg line="createconfig /o /pv 10.0.0 /cf priconfig.xml /dq en-US" /> <arg line="createconfig /o /pv 10.0.0 /cf priconfig.xml /dq en-US" />

View File

@ -9,7 +9,7 @@
<Identity <Identity
Name="@{microsoft.application.name}" Name="@{microsoft.application.name}"
ProcessorArchitecture="x64" ProcessorArchitecture="@{appx.arch}"
Publisher="@{microsoft.application.publisher}" Publisher="@{microsoft.application.publisher}"
Version="@{application.version}.0" Version="@{application.version}.0"
/> />