summaryrefslogtreecommitdiffstats
path: root/win/CS/build.xml
diff options
context:
space:
mode:
authorsr55 <[email protected]>2011-07-24 18:26:11 +0000
committersr55 <[email protected]>2011-07-24 18:26:11 +0000
commit2f8559933d48333e463a548152197db4cb926971 (patch)
tree833f240080b48db678b101f00fc581e2e3ead830 /win/CS/build.xml
parent0fd26df0eea7e63e51c60be40495435947580e5b (diff)
WinGui: Improvements and bug fixes to the installer, including better support for the 64bit version.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4137 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/build.xml')
-rw-r--r--win/CS/build.xml8
1 files changed, 6 insertions, 2 deletions
diff --git a/win/CS/build.xml b/win/CS/build.xml
index d45c2d1ae..89921f719 100644
--- a/win/CS/build.xml
+++ b/win/CS/build.xml
@@ -41,10 +41,14 @@
<!-- Events -->
<Target Name="NightlyPostBuildEvent">
- <Exec Command="copy $(ProjectDir)Installer\MakeNightly.nsi $(ProjectDir)bin\$(Platform)\Release /Y" />
+ <Exec Command="copy $(ProjectDir)Installer\MakeNightly.nsi $(ProjectDir)bin\$(Platform)\Release /Y" Condition="$(Platform) == 'x86'" />
+ <Exec Command="copy $(ProjectDir)Installer\MakeNightly64.nsi $(ProjectDir)bin\$(Platform)\Release /Y" Condition="$(Platform) == 'x64'" />
+
<Exec Command="copy $(ProjectDir)handbrakepineapple.ico $(ProjectDir)bin\$(Platform)\Release /Y" />
<Exec Command="xcopy $(ProjectDir)doc $(ProjectDir)bin\$(Platform)\Release\doc /I /Y" />
- <Exec Command="makensis $(ProjectDir)bin\$(Platform)\Release\MakeNightly.nsi" />
+
+ <Exec Command="makensis $(ProjectDir)bin\$(Platform)\Release\MakeNightly.nsi" Condition="$(Platform) == 'x86'" />
+ <Exec Command="makensis $(ProjectDir)bin\$(Platform)\Release\MakeNightly64.nsi" Condition="$(Platform) == 'x64'" />
</Target>
</Project> \ No newline at end of file