1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00

allow to add an extension to exes

This commit is contained in:
Kevin Glynn 2011-05-26 03:44:43 -05:00
parent 7ba1528f6e
commit 55445b7bd4

View File

@ -40,7 +40,7 @@
<target name="releasefromhere" description="make a release archive off the current branch" depends="clean,init,checkclean,buildcs2j,signtxfiles,mkcs2jlibprojsrc,mkarchive"/>
<target name="dummyrelease" description="make a release archive (doesn't change git repository)" depends="init,switch,buildcs2j,signtxfiles,mkcs2jlibprojsrc,mkarchive"/>
<target name="dummyrelease" description="make a release archive (doesn't change git repository)" depends="init,buildcs2j,signtxfiles,mkcs2jlibprojsrc,mkarchive"/>
<target name="dist" description="Distribute final zip to final resting place">
<copy todir="${release.dir}" file="${release.zip}"/>
@ -57,7 +57,13 @@
<copy todir="${build.dir}/archive/cs2j-${release.tagname}/THIRDPARTY-LICENSES" file="${cs2j.parser.dir}/cs.g"/>
<copy todir="${build.dir}/archive/cs2j-${release.tagname}/CS2JTranslator/bin">
<fileset dir="${cs2j.src.dir}/CS2JTranslator/${exe.sub.dir}">
<exclude name="*.vshost.*"/>
<include name="*.exe"/>
</fileset>
<globmapper from="*.exe" to="*.exe${exe.extension}"/>
</copy>
<copy todir="${build.dir}/archive/cs2j-${release.tagname}/CS2JTranslator/bin">
<fileset dir="${cs2j.src.dir}/CS2JTranslator/${exe.sub.dir}">
<exclude name="*.vshost.*"/>
<include name="*.dll"/>
</fileset>