Skip to content

Commit 4259145

Browse files
author
Karl Mortensen
committed
Control 32 and 64-bit MSI builds, default builds all.
1 parent 6fb4086 commit 4259145

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

build-windows-installer.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,11 @@
5555
message="Enter the location of AdvancedInstaller.com"/>
5656
</target>
5757

58-
<target name="run-advanced-installer-32" depends="setup-aip-files" if="create32BitInstaller">
58+
<target name="run-advanced-installer-32" depends="setup-aip-files" unless="DoNotCreate32BitInstaller">
5959
<antcall target="build32" inheritAll="true" />
6060
</target>
6161

62-
<target name="run-advanced-installer-64" depends="setup-aip-files" if="create64BitInstaller">
62+
<target name="run-advanced-installer-64" depends="setup-aip-files" unless="DoNotCreate64BitInstaller">
6363
<antcall target="build64" inheritAll="true" />
6464
</target>
6565

build.xml

-2
Original file line numberDiff line numberDiff line change
@@ -254,8 +254,6 @@
254254
<target name="versioning-script" depends="check-release, versioning-script-if-release, versioning-script-if-not-release"/>
255255

256256
<target name="build-installer" depends="getProps, doxygen, build-zip" description="Builds Autopsy installer.">
257-
<property name="create32BitInstaller" value="true"/> <!-- Enables building 32-bit MSI installer -->
258-
<property name="create64BitInstaller" value="true"/> <!-- Enables building 64-bit MSI installer -->
259257
<delete dir="${nbdist.dir}/${app.name}-installer" quiet="true"/>
260258
<unzip src="${nbdist.dir}/${app.name}-${app.version}.zip" dest="${nbdist.dir}/${app.name}-installer"/>
261259
<antcall target="build-installer-${os.family}" />

0 commit comments

Comments
 (0)