mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-18 22:45:23 +02:00
[releng] update customBuildCallbacks to latest 3.7 version
This commit is contained in:
parent
3d359b4eef
commit
a232476b86
1 changed files with 27 additions and 13 deletions
|
@ -1,4 +1,3 @@
|
||||||
<?xml version="1.0" encoding="UTF-8"?>
|
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
<!-- Custom targets called from a project's generated build.xml -->
|
<!-- Custom targets called from a project's generated build.xml -->
|
||||||
<!-- Set customBuildCallbacks=<path/to/this/file> in your build.properties.-->
|
<!-- Set customBuildCallbacks=<path/to/this/file> in your build.properties.-->
|
||||||
|
@ -28,7 +27,11 @@
|
||||||
<target name="post.build.jars">
|
<target name="post.build.jars">
|
||||||
<antcall target="build.index"/>
|
<antcall target="build.index"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<target name="build.index" description="Builds search index for the plug-in: org.eclipse.rse.doc.user." if="eclipse.running">
|
||||||
|
<help.buildHelpIndex manifest="plugin.xml" destination="."/>
|
||||||
|
</target>
|
||||||
|
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
<!-- Steps to do before the target build.sources -->
|
<!-- Steps to do before the target build.sources -->
|
||||||
<!-- Available parameters : -->
|
<!-- Available parameters : -->
|
||||||
|
@ -60,11 +63,27 @@
|
||||||
<target name="pre.@dot">
|
<target name="pre.@dot">
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
<!-- ===================================================================== -->
|
||||||
|
<!-- Steps to do during the compilation target <name>, after the compile -->
|
||||||
|
<!-- but before jaring. Substitute "name" with the name of the compilation-->
|
||||||
|
<!-- target, eg @dot -->
|
||||||
|
<!-- Available parameters : -->
|
||||||
|
<!-- source.foldern : n = 1 ... N, the source folders -->
|
||||||
|
<!-- target.folder : where the results of the compilation go -->
|
||||||
|
<!-- <name>.classpath : name = name of the compilation target. A -->
|
||||||
|
<!-- reference to the classpath structure. -->
|
||||||
|
<!-- ===================================================================== -->
|
||||||
|
<target name="post.compile.name">
|
||||||
|
</target>
|
||||||
|
|
||||||
|
<target name="post.compile.@dot">
|
||||||
|
</target>
|
||||||
|
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
<!-- Steps to do after the compilation target <name> -->
|
<!-- Steps to do after the compilation target <name> -->
|
||||||
<!-- Substitute "name" with the name of the compilation target, eg @dot -->
|
<!-- Substitute "name" with the name of the compilation target, eg @dot -->
|
||||||
<!-- Available parameters : -->
|
<!-- Available parameters : -->
|
||||||
<!-- jar.location - the location of the compilation results -->
|
<!-- jar.Location - the location of the compilation results -->
|
||||||
<!-- <name>.classpath : name = name of the compilation target. A -->
|
<!-- <name>.classpath : name = name of the compilation target. A -->
|
||||||
<!-- reference to the classpath structure. -->
|
<!-- reference to the classpath structure. -->
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
|
@ -73,30 +92,25 @@
|
||||||
|
|
||||||
<target name="post.@dot">
|
<target name="post.@dot">
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
<!-- Steps to do before the target gather.bin.parts -->
|
<!-- Steps to do before the target gather.bin.parts -->
|
||||||
<!-- Available parameters : -->
|
<!-- Available parameters : -->
|
||||||
<!-- destination.temp.folder - the directory plugins will be collected to -->
|
<!-- build.result.folder - folder containing the build results -->
|
||||||
<!-- feature.directory - the directory containing the resulting feature -->
|
<!-- target.folder - destination folder -->
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
<target name="pre.gather.bin.parts">
|
<target name="pre.gather.bin.parts">
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
<!-- Steps to do after the target gather.bin.parts -->
|
<!-- Steps to do after the target gather.bin.parts -->
|
||||||
<!-- Available parameters : -->
|
<!-- Available parameters : -->
|
||||||
<!-- base.dir - root of the project -->
|
|
||||||
<!-- build.result.folder - folder containing the build results -->
|
<!-- build.result.folder - folder containing the build results -->
|
||||||
<!-- target.folder - destination folder -->
|
<!-- target.folder - destination folder -->
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
<target name="post.gather.bin.parts">
|
<target name="post.gather.bin.parts">
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<target name="build.index" description="Builds search index for the plug-in: org.eclipse.rse.doc.user." if="eclipse.running">
|
|
||||||
<help.buildHelpIndex manifest="plugin.xml" destination="."/>
|
|
||||||
</target>
|
|
||||||
|
|
||||||
<!-- ===================================================================== -->
|
<!-- ===================================================================== -->
|
||||||
<!-- Steps to do before the target gather.sources -->
|
<!-- Steps to do before the target gather.sources -->
|
||||||
<!-- Available parameters : -->
|
<!-- Available parameters : -->
|
||||||
|
|
Loading…
Add table
Reference in a new issue