mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 09:46:02 +02:00
Added SDK feature.
This commit is contained in:
parent
701ada92df
commit
7629490929
8 changed files with 184 additions and 29 deletions
|
@ -6,3 +6,4 @@ build.log
|
||||||
compile.log
|
compile.log
|
||||||
mail.txt
|
mail.txt
|
||||||
eclipse-SDK-new.zip
|
eclipse-SDK-new.zip
|
||||||
|
message.txt
|
||||||
|
|
|
@ -33,9 +33,9 @@
|
||||||
<ant antfile="build.xml" dir="${pde.build.scripts}">
|
<ant antfile="build.xml" dir="${pde.build.scripts}">
|
||||||
<property name="builder" value="${basedir}/platform" />
|
<property name="builder" value="${basedir}/platform" />
|
||||||
</ant>
|
</ant>
|
||||||
<!--ant antfile="build.xml" dir="${pde.build.scripts}">
|
<ant antfile="build.xml" dir="${pde.build.scripts}">
|
||||||
<property name="builder" value="${basedir}/sdk" />
|
<property name="builder" value="${basedir}/sdk" />
|
||||||
</ant-->
|
</ant>
|
||||||
<concat destfile="compile.log">
|
<concat destfile="compile.log">
|
||||||
<fileset dir="${buildDirectory}/plugins" includes="**/*.bin.log"/>
|
<fileset dir="${buildDirectory}/plugins" includes="**/*.bin.log"/>
|
||||||
</concat>
|
</concat>
|
||||||
|
@ -68,13 +68,13 @@
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="updateSite" depends="init" unless="hasErrors">
|
<target name="updateSite" depends="init" unless="hasErrors">
|
||||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-aix.motif.ppc.zip" dest="${sitedir}"/>
|
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-aix.motif.ppc.zip" dest="${sitedir}"/>
|
||||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-hpux.motif.PA_RISC.zip" dest="${sitedir}"/>
|
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-hpux.motif.PA_RISC.zip" dest="${sitedir}"/>
|
||||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-linux.gtk.x86.zip" dest="${sitedir}"/>
|
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-linux.gtk.x86.zip" dest="${sitedir}"/>
|
||||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-linux.motif.x86.zip" dest="${sitedir}"/>
|
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-linux.motif.x86.zip" dest="${sitedir}"/>
|
||||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-qnx.photon.x86.zip" dest="${sitedir}"/>
|
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-qnx.photon.x86.zip" dest="${sitedir}"/>
|
||||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-solaris.motif.sparc.zip" dest="${sitedir}"/>
|
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-solaris.motif.sparc.zip" dest="${sitedir}"/>
|
||||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-win32.win32.x86.zip" dest="${sitedir}"/>
|
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-win32.win32.x86.zip" dest="${sitedir}"/>
|
||||||
<antcall target="allPlugins">
|
<antcall target="allPlugins">
|
||||||
<param name="target" value="updateSrcPlugin"/>
|
<param name="target" value="updateSrcPlugin"/>
|
||||||
<param name="srcPlugin" value="org.eclipse.cdt.source"/>
|
<param name="srcPlugin" value="org.eclipse.cdt.source"/>
|
||||||
|
@ -206,11 +206,6 @@
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="allPlugins">
|
<target name="allPlugins">
|
||||||
<antcall target="${target}">
|
|
||||||
<param name="type" value="plugin"/>
|
|
||||||
<param name="dir" value="plugins"/>
|
|
||||||
<param name="id" value="org.eclipse.cdt"/>
|
|
||||||
</antcall>
|
|
||||||
<antcall target="${target}">
|
<antcall target="${target}">
|
||||||
<param name="type" value="plugin"/>
|
<param name="type" value="plugin"/>
|
||||||
<param name="dir" value="plugins"/>
|
<param name="dir" value="plugins"/>
|
||||||
|
@ -276,34 +271,44 @@
|
||||||
<param name="id" value="org.eclipse.cdt"/>
|
<param name="id" value="org.eclipse.cdt"/>
|
||||||
</antcall>
|
</antcall>
|
||||||
<antcall target="${target}">
|
<antcall target="${target}">
|
||||||
|
<param name="type" value="plugin"/>
|
||||||
|
<param name="dir" value="plugins"/>
|
||||||
|
<param name="id" value="org.eclipse.cdt"/>
|
||||||
|
</antcall>
|
||||||
|
<antcall target="${target}">
|
||||||
|
<param name="type" value="feature"/>
|
||||||
|
<param name="dir" value="features"/>
|
||||||
|
<param name="id" value="org.eclipse.cdt.sdk"/>
|
||||||
|
</antcall>
|
||||||
|
<antcall target="${target}">
|
||||||
|
<param name="type" value="plugin"/>
|
||||||
|
<param name="dir" value="plugins"/>
|
||||||
|
<param name="id" value="org.eclipse.cdt.sdk"/>
|
||||||
|
</antcall>
|
||||||
|
<antcall target="${target}">
|
||||||
<param name="type" value="fragment"/>
|
<param name="type" value="fragment"/>
|
||||||
<param name="dir" value="plugins"/>
|
<param name="dir" value="plugins"/>
|
||||||
<param name="id" value="org.eclipse.cdt.core.aix"/>
|
<param name="id" value="org.eclipse.cdt.core.aix"/>
|
||||||
<param name="srcPlugin" value="org.eclipse.cdt.source.aix.motif.ppc"/>
|
|
||||||
</antcall>
|
</antcall>
|
||||||
<antcall target="${target}">
|
<antcall target="${target}">
|
||||||
<param name="type" value="fragment"/>
|
<param name="type" value="fragment"/>
|
||||||
<param name="dir" value="plugins"/>
|
<param name="dir" value="plugins"/>
|
||||||
<param name="id" value="org.eclipse.cdt.core.linux"/>
|
<param name="id" value="org.eclipse.cdt.core.linux"/>
|
||||||
<param name="srcPlugin" value="org.eclipse.cdt.source"/>
|
|
||||||
</antcall>
|
</antcall>
|
||||||
<antcall target="${target}">
|
<antcall target="${target}">
|
||||||
<param name="type" value="fragment"/>
|
<param name="type" value="fragment"/>
|
||||||
<param name="dir" value="plugins"/>
|
<param name="dir" value="plugins"/>
|
||||||
<param name="id" value="org.eclipse.cdt.core.qnx"/>
|
<param name="id" value="org.eclipse.cdt.core.qnx"/>
|
||||||
<param name="srcPlugin" value="org.eclipse.cdt.source"/>
|
|
||||||
</antcall>
|
</antcall>
|
||||||
<antcall target="${target}">
|
<antcall target="${target}">
|
||||||
<param name="type" value="fragment"/>
|
<param name="type" value="fragment"/>
|
||||||
<param name="dir" value="plugins"/>
|
<param name="dir" value="plugins"/>
|
||||||
<param name="id" value="org.eclipse.cdt.core.solaris"/>
|
<param name="id" value="org.eclipse.cdt.core.solaris"/>
|
||||||
<param name="srcPlugin" value="org.eclipse.cdt.source"/>
|
|
||||||
</antcall>
|
</antcall>
|
||||||
<antcall target="${target}">
|
<antcall target="${target}">
|
||||||
<param name="type" value="fragment"/>
|
<param name="type" value="fragment"/>
|
||||||
<param name="dir" value="plugins"/>
|
<param name="dir" value="plugins"/>
|
||||||
<param name="id" value="org.eclipse.cdt.core.win32"/>
|
<param name="id" value="org.eclipse.cdt.core.win32"/>
|
||||||
<param name="srcPlugin" value="org.eclipse.cdt.source"/>
|
|
||||||
</antcall>
|
</antcall>
|
||||||
<antcall target="${target}">
|
<antcall target="${target}">
|
||||||
<param name="type" value="plugin"/>
|
<param name="type" value="plugin"/>
|
||||||
|
|
|
@ -5,3 +5,10 @@ org.eclipse.cdt-@buildId@-linux.motif.x86.zip = http://download.eclipse.org/tool
|
||||||
org.eclipse.cdt-@buildId@-qnx.photon.x86.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | qnx,photon,x86 | | runtime | cdt
|
org.eclipse.cdt-@buildId@-qnx.photon.x86.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | qnx,photon,x86 | | runtime | cdt
|
||||||
org.eclipse.cdt-@buildId@-solaris.motif.sparc.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | solaris,motif,sparc | | runtime | cdt
|
org.eclipse.cdt-@buildId@-solaris.motif.sparc.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | solaris,motif,sparc | | runtime | cdt
|
||||||
org.eclipse.cdt-@buildId@-win32.win32.x86.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | win32,win32,x86 | | runtime | cdt
|
org.eclipse.cdt-@buildId@-win32.win32.x86.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | win32,win32,x86 | | runtime | cdt
|
||||||
|
org.eclipse.cdt.sdk-@buildId@-aix.motif.ppc.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | aix,motif,ppc | | runtime | cdt
|
||||||
|
org.eclipse.cdt.sdk-@buildId@-hpux.motif.PA_RISC.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | hpux,motif,PA_RISC | | runtime | cdt
|
||||||
|
org.eclipse.cdt.sdk-@buildId@-linux.gtk.x86.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | linux,gtk,x86 & linux,*,x86 | | runtime | cdt
|
||||||
|
org.eclipse.cdt.sdk-@buildId@-linux.motif.x86.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | linux,motif,x86 & linux,*,x86 | | runtime | cdt
|
||||||
|
org.eclipse.cdt.sdk-@buildId@-qnx.photon.x86.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | qnx,photon,x86 | | runtime | cdt
|
||||||
|
org.eclipse.cdt.sdk-@buildId@-solaris.motif.sparc.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | solaris,motif,sparc | | runtime | cdt
|
||||||
|
org.eclipse.cdt.sdk-@buildId@-win32.win32.x86.zip = http://download.eclipse.org/tools/cdt/wswb/@buildId@/ | win32,win32,x86 | | runtime | cdt
|
||||||
|
|
|
@ -210,6 +210,128 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</xsl:if>
|
</xsl:if>
|
||||||
|
<xsl:if test="substring(@label, 17, 12) > '200405201200'">
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a>
|
||||||
|
<xsl:attribute name="href">
|
||||||
|
<xsl:text>zips/I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>/org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-aix.motif.ppc.zip</xsl:text>
|
||||||
|
</xsl:attribute>
|
||||||
|
<font size="1">
|
||||||
|
<xsl:text>org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-aix.motif.ppc.zip</xsl:text>
|
||||||
|
</font>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a>
|
||||||
|
<xsl:attribute name="href">
|
||||||
|
<xsl:text>zips/I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>/org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-hpux.motif.PA_RISC.zip</xsl:text>
|
||||||
|
</xsl:attribute>
|
||||||
|
<font size="1">
|
||||||
|
<xsl:text>org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-hpux.motif.PA_RISC.zip</xsl:text>
|
||||||
|
</font>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a>
|
||||||
|
<xsl:attribute name="href">
|
||||||
|
<xsl:text>zips/I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>/org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-linux.gtk.x86.zip</xsl:text>
|
||||||
|
</xsl:attribute>
|
||||||
|
<font size="1">
|
||||||
|
<xsl:text>org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-linux.gtk.x86.zip</xsl:text>
|
||||||
|
</font>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a>
|
||||||
|
<xsl:attribute name="href">
|
||||||
|
<xsl:text>zips/I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>/org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-linux.motif.x86.zip</xsl:text>
|
||||||
|
</xsl:attribute>
|
||||||
|
<font size="1">
|
||||||
|
<xsl:text>org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-linux.motif.x86.zip</xsl:text>
|
||||||
|
</font>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a>
|
||||||
|
<xsl:attribute name="href">
|
||||||
|
<xsl:text>zips/I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>/org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-qnx.photon.x86.zip</xsl:text>
|
||||||
|
</xsl:attribute>
|
||||||
|
<font size="1">
|
||||||
|
<xsl:text>org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-qnx.photon.x86.zip</xsl:text>
|
||||||
|
</font>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a>
|
||||||
|
<xsl:attribute name="href">
|
||||||
|
<xsl:text>zips/I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>/org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-solaris.motif.sparc.zip</xsl:text>
|
||||||
|
</xsl:attribute>
|
||||||
|
<font size="1">
|
||||||
|
<xsl:text>org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-solaris.motif.sparc.zip</xsl:text>
|
||||||
|
</font>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<a>
|
||||||
|
<xsl:attribute name="href">
|
||||||
|
<xsl:text>zips/I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>/org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-win32.win32.x86.zip</xsl:text>
|
||||||
|
</xsl:attribute>
|
||||||
|
<font size="1">
|
||||||
|
<xsl:text>org.eclipse.cdt.sdk-I</xsl:text>
|
||||||
|
<xsl:value-of select="substring(@label, 17, 12)"/>
|
||||||
|
<xsl:text>-win32.win32.x86.zip</xsl:text>
|
||||||
|
</font>
|
||||||
|
</a>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</xsl:if>
|
||||||
</table>
|
</table>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
@ -38,6 +38,7 @@ plugin@org.eclipse.cdt.debug.ui.tests=HEAD,:pserver:anonymous@dev.eclipse.org:/h
|
||||||
plugin@org.eclipse.cdt.testing=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
plugin@org.eclipse.cdt.testing=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||||
feature@org.eclipse.cdt.testing=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,,org.eclipse.cdt.testing-feature
|
feature@org.eclipse.cdt.testing=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,,org.eclipse.cdt.testing-feature
|
||||||
|
|
||||||
! Source Feature
|
! SDK Feature
|
||||||
|
|
||||||
feature@org.eclipse.cdt.source=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,,org.eclipse.cdt.source-feature
|
plugin@org.eclipse.cdt.sdk=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,,org.eclipse.cdt-releng/org.eclipse.cdt.sdk
|
||||||
|
feature@org.eclipse.cdt.sdk=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,,org.eclipse.cdt-releng/org.eclipse.cdt.sdk-feature
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
<target name="allElements">
|
<target name="allElements">
|
||||||
<ant antfile="${genericTargets}" target="${target}" >
|
<ant antfile="${genericTargets}" target="${target}" >
|
||||||
<property name="type" value="feature" />
|
<property name="type" value="feature" />
|
||||||
<property name="id" value="org.eclipse.cdt.source" />
|
<property name="id" value="org.eclipse.cdt.sdk" />
|
||||||
</ant>
|
</ant>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
@ -23,31 +23,31 @@
|
||||||
<!-- Add one target for each root element and each configuration -->
|
<!-- Add one target for each root element and each configuration -->
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
|
|
||||||
<target name="assemble.org.eclipse.cdt.source.aix.motif.ppc">
|
<target name="assemble.org.eclipse.cdt.sdk.aix.motif.ppc">
|
||||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="assemble.org.eclipse.cdt.source.hpux.motif.PA_RISC">
|
<target name="assemble.org.eclipse.cdt.sdk.hpux.motif.PA_RISC">
|
||||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="assemble.org.eclipse.cdt.source.linux.gtk.x86">
|
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.x86">
|
||||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="assemble.org.eclipse.cdt.source.linux.motif.x86">
|
<target name="assemble.org.eclipse.cdt.sdk.linux.motif.x86">
|
||||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="assemble.org.eclipse.cdt.source.qnx.photon.x86">
|
<target name="assemble.org.eclipse.cdt.sdk.qnx.photon.x86">
|
||||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="assemble.org.eclipse.cdt.source.solaris.motif.sparc">
|
<target name="assemble.org.eclipse.cdt.sdk.solaris.motif.sparc">
|
||||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="assemble.org.eclipse.cdt.source.win32.win32.x86">
|
<target name="assemble.org.eclipse.cdt.sdk.win32.win32.x86">
|
||||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|
|
@ -4,4 +4,7 @@
|
||||||
<feature id="org.eclipse.cdt" url="features/org.eclipse.cdt_2.0.0.jar" version="2.0.0">
|
<feature id="org.eclipse.cdt" url="features/org.eclipse.cdt_2.0.0.jar" version="2.0.0">
|
||||||
<category name="cdt"/>
|
<category name="cdt"/>
|
||||||
</feature>
|
</feature>
|
||||||
|
<feature id="org.eclipse.cdt.sdk" url="features/org.eclipse.cdt.sdk_2.0.0.jar" version="2.0.0">
|
||||||
|
<category name="cdt"/>
|
||||||
|
</feature>
|
||||||
</site>
|
</site>
|
||||||
|
|
|
@ -33,6 +33,22 @@
|
||||||
</xsl:attribute>
|
</xsl:attribute>
|
||||||
</category>
|
</category>
|
||||||
</feature>
|
</feature>
|
||||||
|
<feature id="org.eclipse.cdt.sdk">
|
||||||
|
<xsl:attribute name="url">
|
||||||
|
<xsl:text>features/org.eclipse.cdt.sdk_</xsl:text>
|
||||||
|
<xsl:value-of select="$version"/>
|
||||||
|
<xsl:text>.jar</xsl:text>
|
||||||
|
</xsl:attribute>
|
||||||
|
<xsl:attribute name="version">
|
||||||
|
<xsl:value-of select="$version"/>
|
||||||
|
</xsl:attribute>
|
||||||
|
<category>
|
||||||
|
<xsl:attribute name="name">
|
||||||
|
<xsl:text>cdt_</xsl:text>
|
||||||
|
<xsl:value-of select="$version"/>
|
||||||
|
</xsl:attribute>
|
||||||
|
</category>
|
||||||
|
</feature>
|
||||||
</site>
|
</site>
|
||||||
</xsl:template>
|
</xsl:template>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue