summaryrefslogtreecommitdiffstats
path: root/win/CS/build.xml
diff options
context:
space:
mode:
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