Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Niefer2007-11-19 22:41:31 +0000
committerAndrew Niefer2007-11-19 22:41:31 +0000
commit34cf9241e6ccf13302f8a654403244dd7f1ab50c (patch)
tree74528173742cb71f8fed0728e1295ba4b62da78a /bundles/org.eclipse.equinox.executable/target.build.xml
parent2509129dc38cab440fe0eae0813c08d00ca573f4 (diff)
downloadrt.equinox.framework-34cf9241e6ccf13302f8a654403244dd7f1ab50c.tar.gz
rt.equinox.framework-34cf9241e6ccf13302f8a654403244dd7f1ab50c.tar.xz
rt.equinox.framework-34cf9241e6ccf13302f8a654403244dd7f1ab50c.zip
Diffstat (limited to 'bundles/org.eclipse.equinox.executable/target.build.xml')
-rw-r--r--bundles/org.eclipse.equinox.executable/target.build.xml12
1 files changed, 12 insertions, 0 deletions
diff --git a/bundles/org.eclipse.equinox.executable/target.build.xml b/bundles/org.eclipse.equinox.executable/target.build.xml
index 34aeb370e..d6de62f92 100644
--- a/bundles/org.eclipse.equinox.executable/target.build.xml
+++ b/bundles/org.eclipse.equinox.executable/target.build.xml
@@ -55,6 +55,16 @@
<chmod perm="755" dir="${feature.base}/win32.win32.x86_64/${collectingFolder}" includes="${launcherName}" />
</target>
+ <target name="rootFileswin32_win32_ia64">
+ <mkdir dir="${feature.base}/win32.win32.ia64/${collectingFolder}"/>
+ <copy todir="${feature.base}/win32.win32.ia64/${collectingFolder}" failonerror="true" overwrite="true">
+ <fileset dir="${basedir}/contributed/win32/win32/ia64">
+ <include name="launcher.exe"/>
+ </fileset>
+ </copy>
+ <chmod perm="755" dir="${feature.base}/win32.win32.ia64/${collectingFolder}" includes="${launcherName}" />
+ </target>
+
<target name="rootFileswin32_wpf_x86">
<mkdir dir="${feature.base}/win32.wpf.x86/${collectingFolder}"/>
<copy todir="${feature.base}/win32.wpf.x86/${collectingFolder}/" failonerror="true" overwrite="true">
@@ -182,6 +192,8 @@
<target name="rootFilesgroup_group_group">
<antcall target="rootFileswin32_win32_x86"/>
<antcall target="rootFileswin32_wpf_x86"/>
+ <antcall target="rootFileswin32_win32_x86_64"/>
+ <antcall target="rootFileswin32_win32_ia64"/>
<antcall target="rootFilesmacosx_carbon_ppc"/>
<antcall target="rootFilesmacosx_carbon_x86"/>
<antcall target="rootFileslinux_gtk_x86"/>

Back to the top