mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-27 18:23:22 +02:00
This commit was manufactured by cvs2svn to create branch 'cdt_2_0'.
Sprout from master 2004-06-28 05:16:32 UTC Bogdan Gheorghe <gheorghe@ca.ibm.com> 'Fix for Bug 67987: [Search] C Search results do no show up as editor annotations' Cherrypick from master 2004-06-28 18:30:50 UTC Mikhail Khodjaiants <mikhailkhod@googlemail.com> 'Partial fix for bug 45535: Performance problems when debugging.': debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/model/CFloatingPointValue.java Delete: doc/org.eclipse.cdt.doc.isv/.project releng/org.eclipse.cdt.releng/build.sh releng/org.eclipse.cdt.releng/build.xml releng/org.eclipse.cdt.releng/maps/cdt.map releng/org.eclipse.cdt.releng/message.in releng/org.eclipse.cdt.releng/platform/build.properties releng/org.eclipse.cdt.releng/platform/customTargets.xml releng/org.eclipse.cdt.releng/sdk/build.properties releng/org.eclipse.cdt.releng/sdk/customTargets.xml releng/org.eclipse.cdt.releng/site.in releng/org.eclipse.cdt.testing-feature/feature.xml releng/org.eclipse.cdt.testing/plugin.xml
This commit is contained in:
parent
c95ad28dcb
commit
38b2c9a553
13 changed files with 44 additions and 1003 deletions
|
@ -0,0 +1,44 @@
|
|||
/**********************************************************************
|
||||
* Copyright (c) 2004 QNX Software Systems and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Common Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/cpl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* QNX Software Systems - Initial API and implementation
|
||||
***********************************************************************/
|
||||
package org.eclipse.cdt.debug.internal.core.model;
|
||||
|
||||
import org.eclipse.cdt.debug.core.cdi.CDIException;
|
||||
import org.eclipse.cdt.debug.core.cdi.model.ICDIValue;
|
||||
import org.eclipse.cdt.debug.core.cdi.model.type.ICDIDoubleValue;
|
||||
import org.eclipse.cdt.debug.core.cdi.model.type.ICDIFloatValue;
|
||||
|
||||
/**
|
||||
* Represents a value of a float or double variable type.
|
||||
*/
|
||||
public class CFloatingPointValue extends CValue {
|
||||
|
||||
private Number fFloatingPointValue;
|
||||
|
||||
/**
|
||||
* Constructor for CFloatingPointValue.
|
||||
*/
|
||||
public CFloatingPointValue( CVariable parent, ICDIValue cdiValue ) {
|
||||
super( parent, cdiValue );
|
||||
}
|
||||
|
||||
public Number getFloatingPointValue() throws CDIException {
|
||||
if ( fFloatingPointValue == null ) {
|
||||
ICDIValue cdiValue = getUnderlyingValue();
|
||||
if ( cdiValue instanceof ICDIDoubleValue ) {
|
||||
fFloatingPointValue = new Double( ((ICDIDoubleValue)cdiValue).doubleValue() );
|
||||
}
|
||||
else if ( cdiValue instanceof ICDIFloatValue ) {
|
||||
fFloatingPointValue = new Float( ((ICDIFloatValue)cdiValue).floatValue() );
|
||||
}
|
||||
}
|
||||
return fFloatingPointValue;
|
||||
}
|
||||
}
|
|
@ -1,11 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>org.eclipse.cdt.doc.isv</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
</natures>
|
||||
</projectDescription>
|
|
@ -1,9 +0,0 @@
|
|||
# Treat this is an example build script
|
||||
# Please adjust paths as necessary for your build machine
|
||||
|
||||
export JAVA_HOME=/opt/java/j2sdk1.4.2_03
|
||||
export PATH=$JAVA_HOME/bin:$PATH
|
||||
|
||||
cd `dirname $0`
|
||||
|
||||
java -cp ../org.eclipse.releng.basebuilder/startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner $* 2>&1 | tee build.log
|
|
@ -1,357 +0,0 @@
|
|||
<project default="zips">
|
||||
|
||||
<target name="build" depends="zips,test,updateSite"/>
|
||||
<target name="nightly" depends="build,upload,mail"/>
|
||||
<target name="integration" depends="nightly,wswbmap"/>
|
||||
<target name="milestone" depends="nightly,milestoneSite"/>
|
||||
|
||||
<target name="init">
|
||||
<touch file="${user.home}/.cvspass" />
|
||||
<tstamp/>
|
||||
<property name="timestamp" value="${DSTAMP}${TSTAMP}" />
|
||||
<property name="buildDirectory" value="${basedir}/results" />
|
||||
<property name="baseLocation" value="${buildDirectory}/eclipse"/>
|
||||
<property name="pde.build.scripts" value="${basedir}/../org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.0.0/scripts"/>
|
||||
<property name="eclipseZip" value="eclipse-SDK.zip"/>
|
||||
<property name="collectingFolder" value="eclipse"/>
|
||||
<property name="archivePrefix" value="eclipse"/>
|
||||
<property name="buildType" value="I" />
|
||||
<property name="buildId" value="${buildType}${timestamp}"/>
|
||||
<property name="siteurl" value="http://update.eclipse.org/tools/cdt/updates/builds/2.0"/>
|
||||
<property name="remotedir" value="download.eclipse.org:/home/www/tools/cdt/updates/builds/2.0"/>
|
||||
<property name="zipsdir" value="${buildDirectory}/${buildType}.${buildId}"/>
|
||||
<property name="sitedir" value="${buildDirectory}/build.site"/>
|
||||
<property name="siteversion" value="2.0.0"/>
|
||||
<property name="milestonedir" value="${buildDirectory}/${milestone}"/>
|
||||
<property name="buildingOSGi" value="true"/>
|
||||
<property name="messagefile" value="message.in"/>
|
||||
<property name="mailto" value="cdt-test-dev@eclipse.org"/>
|
||||
</target>
|
||||
|
||||
<target name="zips" depends="init,unzip">
|
||||
<ant antfile="build.xml" dir="${pde.build.scripts}">
|
||||
<property name="builder" value="${basedir}/platform" />
|
||||
</ant>
|
||||
<ant antfile="build.xml" dir="${pde.build.scripts}">
|
||||
<property name="builder" value="${basedir}/sdk" />
|
||||
</ant>
|
||||
<concat destfile="compile.log">
|
||||
<fileset dir="${buildDirectory}/plugins" includes="**/*.bin.log"/>
|
||||
</concat>
|
||||
<loadfile property="compileLog" srcFile="compile.log"/>
|
||||
<condition property="hasErrors">
|
||||
<contains string="${compileLog}" substring="ERROR"/>
|
||||
</condition>
|
||||
</target>
|
||||
|
||||
<target name="unzip" depends="init" unless="dontUnzip">
|
||||
<unzip src="${eclipseZip}" dest="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="test" depends="init" unless="hasErrors">
|
||||
<ant antfile="build.xml" dir="${pde.build.scripts}">
|
||||
<property name="builder" value="${basedir}/testing" />
|
||||
</ant>
|
||||
<!-- This depends on what platform we run the test, it would be
|
||||
nice to figure this out on the fly -->
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-linux.gtk.x86.zip" dest="${buildDirectory}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt.testing-${buildId}.zip" dest="${buildDirectory}"/>
|
||||
<copy todir="${buildDirectory}/eclipse/plugins/org.eclipse.test">
|
||||
<fileset dir="../org.eclipse.test"/>
|
||||
</copy>
|
||||
<copy todir="${buildDirectory}/eclipse/plugins/org.eclipse.ant.optional.junit">
|
||||
<fileset dir="../org.eclipse.ant.optional.junit"/>
|
||||
</copy>
|
||||
<ant antfile="test.xml" dir="${buildDirectory}/eclipse/plugins/org.eclipse.cdt.testing_${siteversion}">
|
||||
<property name="eclipse-home" value="${buildDirectory}/eclipse"/>
|
||||
</ant>
|
||||
<xslt style="${buildDirectory}/eclipse/plugins/org.eclipse.test/JUNIT.XSL"
|
||||
in="${buildDirectory}/eclipse/org.eclipse.cdt.testing.xml"
|
||||
out="${sitedir}/logs/${siteversion}.${timestamp}.html"/>
|
||||
</target>
|
||||
|
||||
<target name="updateSite" depends="init" unless="hasErrors">
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-aix.motif.ppc.zip" dest="${sitedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-hpux.motif.PA_RISC.zip" dest="${sitedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-linux.gtk.x86.zip" dest="${sitedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-linux.motif.x86.zip" dest="${sitedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-qnx.photon.x86.zip" dest="${sitedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-solaris.motif.sparc.zip" dest="${sitedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt.sdk-${buildId}-win32.win32.x86.zip" dest="${sitedir}"/>
|
||||
<antcall target="allPlugins">
|
||||
<param name="target" value="updateSrcPlugin"/>
|
||||
<param name="srcPlugin" value="org.eclipse.cdt.source"/>
|
||||
</antcall>
|
||||
<antcall target="updateSrcPlugin">
|
||||
<param name="id" value="org.eclipse.cdt.core.aix"/>
|
||||
<param name="srcPlugin" value="org.eclipse.cdt.source.aix.motif.ppc"/>
|
||||
</antcall>
|
||||
<antcall target="updateSrcPlugin">
|
||||
<param name="id" value="org.eclipse.cdt.core.linux"/>
|
||||
<param name="srcPlugin" value="org.eclipse.cdt.source.linux.motif.x86"/>
|
||||
</antcall>
|
||||
<antcall target="updateSrcPlugin">
|
||||
<param name="id" value="org.eclipse.cdt.core.linux"/>
|
||||
<param name="srcPlugin" value="org.eclipse.cdt.source.linux.gtk.x86"/>
|
||||
</antcall>
|
||||
<antcall target="updateSrcPlugin">
|
||||
<param name="id" value="org.eclipse.cdt.core.qnx"/>
|
||||
<param name="srcPlugin" value="org.eclipse.cdt.source.qnx.photon.x86"/>
|
||||
</antcall>
|
||||
<antcall target="updateSrcPlugin">
|
||||
<param name="id" value="org.eclipse.cdt.core.solaris"/>
|
||||
<param name="srcPlugin" value="org.eclipse.cdt.source.solaris.motif.sparc"/>
|
||||
</antcall>
|
||||
<antcall target="updateSrcPlugin">
|
||||
<param name="id" value="org.eclipse.cdt.core.win32"/>
|
||||
<param name="srcPlugin" value="org.eclipse.cdt.source.win32.win32.x86"/>
|
||||
</antcall>
|
||||
<antcall target="allElements">
|
||||
<param name="target" value="updateJars"/>
|
||||
</antcall>
|
||||
<delete dir="${sitedir}/eclipse"/>
|
||||
<get src="${siteurl}/site.xml" dest="${sitedir}/site.xml"/>
|
||||
<xslt style="site.xsl" in="${sitedir}/site.xml" out="x">
|
||||
<param name="version" expression="${siteversion}.${timestamp}"/>
|
||||
</xslt>
|
||||
<move file="x" tofile="${sitedir}/site.xml"/>
|
||||
<xslt style="index.xsl" in="${sitedir}/site.xml" out="${sitedir}/index.html"/>
|
||||
<copy todir="${sitedir}/zips/${buildId}">
|
||||
<fileset dir="${zipsdir}"/>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<target name="updateSrcPlugin">
|
||||
<move todir="${sitedir}/eclipse/plugins/${srcPlugin}_${siteversion}/src/${id}_${siteversion}.${timestamp}">
|
||||
<fileset dir="${sitedir}/eclipse/plugins/${srcPlugin}_${siteversion}/src/${id}_${siteversion}"/>
|
||||
</move>
|
||||
</target>
|
||||
|
||||
<target name="updateJars">
|
||||
<xslt style="plugin.xsl" in="${sitedir}/eclipse/${dir}/${id}_${siteversion}/${type}.xml" out="x">
|
||||
<param name="version" expression="${siteversion}.${timestamp}"/>
|
||||
</xslt>
|
||||
<move file="x" tofile="${sitedir}/eclipse/${dir}/${id}_${siteversion}/${type}.xml"/>
|
||||
<mkdir dir="${sitedir}/${dir}"/>
|
||||
<zip basedir="${sitedir}/eclipse/${dir}/${id}_${siteversion}"
|
||||
zipfile="${sitedir}/${dir}/${id}_${siteversion}.${timestamp}.jar"/>
|
||||
</target>
|
||||
|
||||
<target name="milestoneSite" depends="init" unless="hasErrors">
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-aix.motif.ppc.zip" dest="${milestonedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-hpux.motif.PA_RISC.zip" dest="${milestonedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-linux.gtk.x86.zip" dest="${milestonedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-linux.motif.x86.zip" dest="${milestonedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-qnx.photon.x86.zip" dest="${milestonedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-solaris.motif.sparc.zip" dest="${milestonedir}"/>
|
||||
<unzip src="${zipsdir}/org.eclipse.cdt-${buildId}-win32.win32.x86.zip" dest="${milestonedir}"/>
|
||||
<antcall target="allElements">
|
||||
<param name="target" value="milestoneJars"/>
|
||||
</antcall>
|
||||
<copy file="site.in" tofile="${milestonedir}/site.xml"/>
|
||||
<replace file="${milestonedir}/site.xml" token="@milestone@" value="${milestone}"/>
|
||||
<delete dir="${milestonedir}/eclipse"/>
|
||||
</target>
|
||||
|
||||
<target name="milestoneJars">
|
||||
<mkdir dir="${milestonedir}/${dir}"/>
|
||||
<jar basedir="${milestonedir}/eclipse/${dir}/${id}_${siteversion}"
|
||||
destfile="${milestonedir}/${dir}/${id}_${siteversion}.jar"/>
|
||||
</target>
|
||||
|
||||
<target name="upload" depends="init" unless="hasErrors">
|
||||
<scp todir="${cdtuser}:${cdtpasswd}@${remotedir}">
|
||||
<fileset dir="${sitedir}"/>
|
||||
</scp>
|
||||
</target>
|
||||
|
||||
<target name="wswbmap" depends="init" unless="hasErrors">
|
||||
<copy file="cdt-map.in" tofile="cdt-map.txt" overwrite="true"/>
|
||||
<replace file="cdt-map.txt" token="@buildId@" value="${buildId}"/>
|
||||
<scp todir="${cdtuser}:${cdtpasswd}@download.eclipse.org:/home/www/tools/cdt/wswb">
|
||||
<fileset file="cdt-map.txt"/>
|
||||
</scp>
|
||||
</target>
|
||||
|
||||
<target name="mail" depends="init">
|
||||
<antcall target="mailPass"/>
|
||||
<antcall target="mailFail"/>
|
||||
</target>
|
||||
|
||||
<target name="mailPass" unless="hasErrors">
|
||||
<copy file="${messagefile}" tofile="message.txt" overwrite="true"/>
|
||||
<replace file="message.txt" token="@buildId@" value="${buildId}"/>
|
||||
<concat destfile="mail.txt">
|
||||
<filelist dir="${basedir}" files="message.txt,compile.log"/>
|
||||
</concat>
|
||||
<mail subject="CDT Build ${siteversion}.${timestamp} completed"
|
||||
tolist="${mailto}" from="dschaefe@ca.ibm.com">
|
||||
<message src="mail.txt"/>
|
||||
</mail>
|
||||
</target>
|
||||
|
||||
<target name="mailFail" if="hasErrors">
|
||||
<mail subject="CDT Build ${siteversion}.${timestamp} failed"
|
||||
tolist="${mailto}" from="dschaefe@ca.ibm.com">
|
||||
<message src="compile.log"/>
|
||||
</mail>
|
||||
</target>
|
||||
|
||||
<target name="allPlugins">
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.core"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.debug.core"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.debug.mi.core"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.debug.mi.ui"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.debug.ui"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.launch"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.make.core"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.make.ui"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.managedbuilder.core"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.managedbuilder.ui"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.ui"/>
|
||||
</antcall>
|
||||
</target>
|
||||
|
||||
<target name="allElements">
|
||||
<antcall target="allPlugins"/>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="feature"/>
|
||||
<param name="dir" value="features"/>
|
||||
<param name="id" value="org.eclipse.cdt"/>
|
||||
</antcall>
|
||||
<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="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.core.aix"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.core.linux"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.core.qnx"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.core.solaris"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.core.win32"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.doc.user"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="feature"/>
|
||||
<param name="dir" value="features"/>
|
||||
<param name="id" value="org.eclipse.cdt.source"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="plugin"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.source"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.source.aix.motif.ppc"/>
|
||||
</antcall>
|
||||
<!--antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.source.hpux.motif.PA_RISC"/>
|
||||
</antcall-->
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.source.linux.gtk.x86"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.source.linux.motif.x86"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.source.qnx.photon.x86"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.source.solaris.motif.sparc"/>
|
||||
</antcall>
|
||||
<antcall target="${target}">
|
||||
<param name="type" value="fragment"/>
|
||||
<param name="dir" value="plugins"/>
|
||||
<param name="id" value="org.eclipse.cdt.source.win32.win32.x86"/>
|
||||
</antcall>
|
||||
</target>
|
||||
|
||||
</project>
|
|
@ -1,44 +0,0 @@
|
|||
! Cross platform
|
||||
|
||||
plugin@org.eclipse.cdt.core=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
plugin@org.eclipse.cdt.ui=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
|
||||
plugin@org.eclipse.cdt.make.core=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
plugin@org.eclipse.cdt.make.ui=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
|
||||
plugin@org.eclipse.cdt.managedbuilder.core=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
plugin@org.eclipse.cdt.managedbuilder.ui=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
|
||||
plugin@org.eclipse.cdt.debug.core=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
plugin@org.eclipse.cdt.debug.ui=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
|
||||
plugin@org.eclipse.cdt.debug.mi.core=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
plugin@org.eclipse.cdt.debug.mi.ui=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
|
||||
plugin@org.eclipse.cdt.launch=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
|
||||
plugin@org.eclipse.cdt.doc.user=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
|
||||
plugin@org.eclipse.cdt=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
feature@org.eclipse.cdt=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,,org.eclipse.cdt-feature
|
||||
|
||||
! Platform specific
|
||||
|
||||
fragment@org.eclipse.cdt.core.aix=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
fragment@org.eclipse.cdt.core.linux=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
fragment@org.eclipse.cdt.core.qnx=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
fragment@org.eclipse.cdt.core.solaris=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
fragment@org.eclipse.cdt.core.win32=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
|
||||
! Testing feature
|
||||
|
||||
plugin@org.eclipse.cdt.core.tests=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
plugin@org.eclipse.cdt.ui.tests=HEAD,:pserver:anonymous@dev.eclipse.org:/home/tools,
|
||||
plugin@org.eclipse.cdt.debug.ui.tests=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
|
||||
|
||||
! SDK 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
|
|
@ -1,9 +0,0 @@
|
|||
The build is available at
|
||||
|
||||
http://update.eclipse.org/tools/cdt/updates/builds/2.0
|
||||
|
||||
Cheers,
|
||||
dschaefer2, the buildmaster...
|
||||
|
||||
--- Compile logs ---
|
||||
|
|
@ -1,86 +0,0 @@
|
|||
#####################
|
||||
# Parameters describing how and where to execute the build.
|
||||
# Typical users need only update the following properties:
|
||||
# baseLocation - where things you are building against are installed
|
||||
# bootclasspath - The base jars to compile against (typicaly rt.jar)
|
||||
# configs - the list of {os, ws, arch} configurations to build.
|
||||
#
|
||||
# Of course any of the settings here can be overridden by spec'ing
|
||||
# them on the command line (e.g., -DbaseLocation=d:/eclipse
|
||||
|
||||
############# CVS CONTROL ################
|
||||
# The CVS tag to use when fetching the map files from the repository
|
||||
mapVersionTag=HEAD
|
||||
|
||||
# The CVS tag to use when fetching elements to build. By default the
|
||||
# builder will use whatever is in the maps. Use this value to override
|
||||
# for example, when doing a nightly build out of HEAD
|
||||
# fetchTag=HEAD
|
||||
|
||||
|
||||
############## BUILD / GENERATION CONTROL ################
|
||||
# The directory into which the build elements will be fetched and where
|
||||
# the build will take place. buildDirectory and install should be the same
|
||||
# value.
|
||||
buildDirectory=build
|
||||
|
||||
# Type of build. Used in naming the build output. Typically this value is
|
||||
# one of I, N, M, S, ...
|
||||
buildType=I
|
||||
|
||||
# ID of the build. Used in naming the build output.
|
||||
buildId=TestBuild
|
||||
|
||||
# Label for the build. Used in naming the build output
|
||||
buildLabel=${buildType}.${buildId}
|
||||
|
||||
# Timestamp for the build. Used in naming the build output
|
||||
timestamp=007
|
||||
|
||||
# Base location for anything the build needs to compile against. For example,
|
||||
# when building GEF, the baseLocation should be the location of a previously
|
||||
# installed Eclipse against which the GEF code will be compiled.
|
||||
baseLocation=
|
||||
|
||||
#Os/Ws/Arch/nl of the eclipse specified by baseLocation
|
||||
#baseos
|
||||
#basews
|
||||
#basearch
|
||||
#basenl
|
||||
|
||||
# The location underwhich all of the build output will be collected. This will be
|
||||
# the root path in the resultant zip file.
|
||||
collPlace=eclipse
|
||||
|
||||
# The directory in which to execute zip of the ${collPlace} directory
|
||||
collBase=.
|
||||
|
||||
# The list of {os, ws, arch} configurations to build. This
|
||||
# value is a '&' separated list of ',' separate triples. For example,
|
||||
# configs=win32,win32,x86 & linux,motif,x86
|
||||
# By default the value is *,*,*
|
||||
configs=\
|
||||
aix,motif,ppc \
|
||||
& hpux,motif,PA_RISC \
|
||||
& linux,gtk,x86 \
|
||||
& linux,motif,x86 \
|
||||
& qnx,photon,x86 \
|
||||
& solaris,motif,sparc \
|
||||
& win32,win32,x86
|
||||
|
||||
#Arguments to send to the zip executable
|
||||
zipargs=
|
||||
|
||||
############# JAVA COMPILER OPTIONS ##############
|
||||
# The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE
|
||||
#bootclasspath=d:/ibm1.3.1/jre/lib/rt.jar
|
||||
|
||||
javacDebugInfo=on
|
||||
javacVerbose=true
|
||||
javacFailOnError=false
|
||||
|
||||
# The version of the source code
|
||||
#javaSource=1.3
|
||||
|
||||
# The version of the byte code targeted
|
||||
#javacTarget=1.1
|
|
@ -1,162 +0,0 @@
|
|||
<project name="Build specific targets and properties" default="noDefault" >
|
||||
|
||||
<property name="basews" value="gtk" />
|
||||
<property name="baseos" value="linux" />
|
||||
<property name="basearch" value="x86" />
|
||||
<property name="basenl" value="en_US" />
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Run a given ${target} on all elements being built -->
|
||||
<!-- Add on <ant> task for each top level element being built. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="allElements">
|
||||
<ant antfile="${genericTargets}" target="${target}" >
|
||||
<property name="type" value="feature" />
|
||||
<property name="id" value="org.eclipse.cdt" />
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Targets to assemble the built elements for particular configurations -->
|
||||
<!-- These generally call the generated assemble scripts (named in -->
|
||||
<!-- ${assembleScriptName}) but may also add pre and post processing -->
|
||||
<!-- Add one target for each root element and each configuration -->
|
||||
<!-- ===================================================================== -->
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.aix.motif.ppc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.hpux.motif.PA_RISC">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.linux.gtk.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.linux.motif.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.qnx.photon.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.solaris.motif.sparc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.win32.win32.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Check out map files from correct repository -->
|
||||
<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="getMapFiles">
|
||||
<copy todir="${buildDirectory}/maps">
|
||||
<fileset dir="${builder}/../maps"/>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before setup -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preSetup">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after setup but before starting the build proper -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postSetup">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before fetching the build elements -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preFetch">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after fetching the build elements -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postFetch">
|
||||
<condition property="patchesAvailable">
|
||||
<available file="${builder}/patch.xml"/>
|
||||
</condition>
|
||||
<antcall target="applyPatches"/>
|
||||
</target>
|
||||
|
||||
<target name="applyPatches" if="patchesAvailable">
|
||||
<ant antfile="${builder}/patch.xml"/>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before generating the build scripts. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preGenerate">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after generating the build scripts. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postGenerate">
|
||||
</target>
|
||||
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before running the build.xmls for the elements being built. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preProcess">
|
||||
<replace dir="${buildDirectory}/plugins" value="${timestamp}" token="@build@">
|
||||
<include name="**/about.mappings" />
|
||||
</replace>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after running the build.xmls for the elements being built. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postProcess">
|
||||
</target>
|
||||
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before running assemble. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preAssemble">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after running assemble. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postAssemble">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after the build is done. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postBuild">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do to test the build results -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="test">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do to publish the build results -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="publish">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Default target -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="noDefault">
|
||||
<echo message="You must specify a target when invoking this file" />
|
||||
</target>
|
||||
|
||||
</project>
|
|
@ -1,88 +0,0 @@
|
|||
#####################
|
||||
# Parameters describing how and where to execute the build.
|
||||
# Typical users need only update the following properties:
|
||||
# baseLocation - where things you are building against are installed
|
||||
# bootclasspath - The base jars to compile against (typicaly rt.jar)
|
||||
# configs - the list of {os, ws, arch} configurations to build.
|
||||
#
|
||||
# Of course any of the settings here can be overridden by spec'ing
|
||||
# them on the command line (e.g., -DbaseLocation=d:/eclipse
|
||||
|
||||
############# CVS CONTROL ################
|
||||
# The CVS tag to use when fetching the map files from the repository
|
||||
mapVersionTag=HEAD
|
||||
|
||||
# The CVS tag to use when fetching elements to build. By default the
|
||||
# builder will use whatever is in the maps. Use this value to override
|
||||
# for example, when doing a nightly build out of HEAD
|
||||
# fetchTag=HEAD
|
||||
|
||||
|
||||
############## BUILD / GENERATION CONTROL ################
|
||||
# The directory into which the build elements will be fetched and where
|
||||
# the build will take place. buildDirectory and install should be the same
|
||||
# value.
|
||||
buildDirectory=build
|
||||
|
||||
# Type of build. Used in naming the build output. Typically this value is
|
||||
# one of I, N, M, S, ...
|
||||
buildType=I
|
||||
|
||||
# ID of the build. Used in naming the build output.
|
||||
buildId=TestBuild
|
||||
|
||||
# Label for the build. Used in naming the build output
|
||||
buildLabel=${buildType}.${buildId}
|
||||
|
||||
# Timestamp for the build. Used in naming the build output
|
||||
timestamp=007
|
||||
|
||||
# Base location for anything the build needs to compile against. For example,
|
||||
# when building GEF, the baseLocation should be the location of a previously
|
||||
# installed Eclipse against which the GEF code will be compiled.
|
||||
baseLocation=
|
||||
|
||||
#Os/Ws/Arch/nl of the eclipse specified by baseLocation
|
||||
#baseos
|
||||
#basews
|
||||
#basearch
|
||||
#basenl
|
||||
|
||||
# The location underwhich all of the build output will be collected. This will be
|
||||
# the root path in the resultant zip file.
|
||||
collPlace=eclipse
|
||||
|
||||
# The directory in which to execute zip of the ${collPlace} directory
|
||||
collBase=.
|
||||
|
||||
# The list of {os, ws, arch} configurations to build. This
|
||||
# value is a '&' separated list of ',' separate triples. For example,
|
||||
# configs=win32,win32,x86 & linux,motif,x86
|
||||
# By default the value is *,*,*
|
||||
configs=\
|
||||
aix,motif,ppc \
|
||||
& hpux,motif,PA_RISC \
|
||||
& linux,gtk,x86 \
|
||||
& linux,motif,x86 \
|
||||
& qnx,photon,x86 \
|
||||
& solaris,motif,sparc \
|
||||
& win32,win32,x86
|
||||
|
||||
#Arguments to send to the zip executable
|
||||
zipargs=
|
||||
|
||||
############# JAVA COMPILER OPTIONS ##############
|
||||
# The location of the Java jars to compile against. Typically the rt.jar for your JDK/JRE
|
||||
#bootclasspath=d:/ibm1.3.1/jre/lib/rt.jar
|
||||
|
||||
# Whether or not to include debug info in the output jars
|
||||
javacDebugInfo=true
|
||||
|
||||
# Whether or not to fail the build if there are compiler errors
|
||||
javacfailonerror=true
|
||||
|
||||
# The version of the source code
|
||||
#javaSource=1.3
|
||||
|
||||
# The version of the byte code targeted
|
||||
#javacTarget=1.1
|
|
@ -1,154 +0,0 @@
|
|||
<project name="Build specific targets and properties" default="noDefault" >
|
||||
|
||||
<property name="basews" value="gtk" />
|
||||
<property name="baseos" value="linux" />
|
||||
<property name="basearch" value="x86" />
|
||||
<property name="basenl" value="en_US" />
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Run a given ${target} on all elements being built -->
|
||||
<!-- Add on <ant> task for each top level element being built. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="allElements">
|
||||
<ant antfile="${genericTargets}" target="${target}" >
|
||||
<property name="type" value="feature" />
|
||||
<property name="id" value="org.eclipse.cdt.sdk" />
|
||||
</ant>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Targets to assemble the built elements for particular configurations -->
|
||||
<!-- These generally call the generated assemble scripts (named in -->
|
||||
<!-- ${assembleScriptName}) but may also add pre and post processing -->
|
||||
<!-- Add one target for each root element and each configuration -->
|
||||
<!-- ===================================================================== -->
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.aix.motif.ppc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.hpux.motif.PA_RISC">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.gtk.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.linux.motif.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.qnx.photon.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.solaris.motif.sparc">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<target name="assemble.org.eclipse.cdt.sdk.win32.win32.x86">
|
||||
<ant antfile="${assembleScriptName}" dir="${buildDirectory}"/>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Check out map files from correct repository -->
|
||||
<!-- Replace values for cvsRoot, package and mapVersionTag as desired. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="getMapFiles">
|
||||
<copy todir="${buildDirectory}/maps">
|
||||
<fileset dir="${builder}/../maps"/>
|
||||
</copy>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before setup -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preSetup">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after setup but before starting the build proper -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postSetup">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before fetching the build elements -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preFetch">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after fetching the build elements -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postFetch">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before generating the build scripts. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preGenerate">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after generating the build scripts. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postGenerate">
|
||||
</target>
|
||||
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before running the build.xmls for the elements being built. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preProcess">
|
||||
<replace dir="${buildDirectory}/plugins" value="${timestamp}" token="@build@">
|
||||
<include name="**/about.mappings" />
|
||||
</replace>
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after running the build.xmls for the elements being built. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postProcess">
|
||||
</target>
|
||||
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do before running assemble. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="preAssemble">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after running assemble. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postAssemble">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do after the build is done. -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="postBuild">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do to test the build results -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="test">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Steps to do to publish the build results -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="publish">
|
||||
</target>
|
||||
|
||||
<!-- ===================================================================== -->
|
||||
<!-- Default target -->
|
||||
<!-- ===================================================================== -->
|
||||
<target name="noDefault">
|
||||
<echo message="You must specify a target when invoking this file" />
|
||||
</target>
|
||||
|
||||
</project>
|
|
@ -1,10 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<site>
|
||||
<category-def name="cdt" label="CDT Milestone @milestone@"/>
|
||||
<feature id="org.eclipse.cdt" url="features/org.eclipse.cdt_2.0.0.jar" version="2.0.0">
|
||||
<category name="cdt"/>
|
||||
</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>
|
|
@ -1,61 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<feature
|
||||
id="org.eclipse.cdt.testing"
|
||||
label="%featureName"
|
||||
version="2.0.0"
|
||||
provider-name="%providerName"
|
||||
image="eclipse_update_120.jpg">
|
||||
|
||||
<description>
|
||||
%description
|
||||
</description>
|
||||
|
||||
<license url="%licenseURL">
|
||||
%license
|
||||
</license>
|
||||
|
||||
<url>
|
||||
<update label="%updateSiteName" url="http://update.eclipse.org/tools/cdt/updates/release"/>
|
||||
</url>
|
||||
|
||||
<requires>
|
||||
<import plugin="org.eclipse.ui.ide"/>
|
||||
<import plugin="org.eclipse.core.resources"/>
|
||||
<import plugin="org.junit"/>
|
||||
<import plugin="org.eclipse.cdt.debug.core"/>
|
||||
<import plugin="org.eclipse.cdt.debug.mi.core"/>
|
||||
<import plugin="org.eclipse.cdt.core"/>
|
||||
<import plugin="org.eclipse.ui"/>
|
||||
<import plugin="org.eclipse.core.runtime.compatibility"/>
|
||||
<import plugin="org.eclipse.jface.text"/>
|
||||
<import plugin="org.eclipse.cdt.ui"/>
|
||||
<import plugin="org.eclipse.swt"/>
|
||||
<import plugin="org.eclipse.cdt.managedbuilder.core"/>
|
||||
<import plugin="org.eclipse.cdt.make.core"/>
|
||||
</requires>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.cdt.debug.ui.tests"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="2.0.0"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.cdt.ui.tests"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="2.0.0"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.cdt.testing"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="2.0.0"/>
|
||||
|
||||
<plugin
|
||||
id="org.eclipse.cdt.core.tests"
|
||||
download-size="0"
|
||||
install-size="0"
|
||||
version="2.0.0"/>
|
||||
|
||||
</feature>
|
|
@ -1,12 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.0"?>
|
||||
<plugin
|
||||
id="org.eclipse.cdt.testing"
|
||||
name="%pluginName"
|
||||
version="2.0.0"
|
||||
provider-name="%providerName">
|
||||
|
||||
<runtime>
|
||||
</runtime>
|
||||
|
||||
</plugin>
|
Loading…
Add table
Reference in a new issue