1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-08 01:25:23 +02:00

debugging build

This commit is contained in:
David Dykstal 2006-06-20 19:11:23 +00:00
parent 45cd824d58
commit 56a4618482
3 changed files with 54 additions and 54 deletions

View file

@ -17,14 +17,14 @@ end
# "eclipse" is the location of the basic PDE and plugins to compile against # "eclipse" is the location of the basic PDE and plugins to compile against
# This should include the org.eclipse.pde.build project # This should include the org.eclipse.pde.build project
eclipse = "c:/work/targets/OpenRSE-1.0/eclipse" eclipse = "../eclipse"
# "builder" is the location of the custom build scripts customTargets.xml and build.properties # "builder" is the location of the custom build scripts customTargets.xml and build.properties
# (i.e. the contents of org.eclipse.rse.build) # (i.e. the contents of org.eclipse.rse.build)
builder = "." builder = "."
# "working" is where the build is actually done, does not need to exist # "working" is where the build is actually done, does not need to exist
working = "c:/temp/build" working = "../build"
# make these absolute paths # make these absolute paths
eclipse = File.expand_path(eclipse) eclipse = File.expand_path(eclipse)

View file

@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<plugin> <plugin>
<extension point="org.eclipse.help.toc"> <extension point="org.eclipse.help.toc">
<toc file="toc.xml" primary="true"/> <toc file="toc.xml" primary="true"/>
<index path="index"/> <index path="index/"/>
</extension> </extension>
</plugin> </plugin>

View file

@ -1,43 +1,43 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?> <?eclipse version="3.0"?>
<!-- ===================================================== --> <!-- ===================================================== -->
<!-- Declare the documentation for the RSE ISV Guide --> <!-- Declare the documentation for the RSE ISV Guide -->
<!-- We will declare only one infoset (book) --> <!-- We will declare only one infoset (book) -->
<!-- ===================================================== --> <!-- ===================================================== -->
<plugin> <plugin>
<!-- ============================================================================= --> <!-- ============================================================================= -->
<!-- Define primary TOC --> <!-- Define primary TOC -->
<!-- ============================================================================= --> <!-- ============================================================================= -->
<extension point="org.eclipse.help.toc"> <extension point="org.eclipse.help.toc">
<toc file="toc.xml" primary="true"/> <toc file="toc.xml" primary="true"/>
<index path="index" /> <index path="index/"/>
</extension> </extension>
<!-- ============================================================================= --> <!-- ============================================================================= -->
<!-- Define TOCs --> <!-- Define TOCs -->
<!-- ============================================================================= --> <!-- ============================================================================= -->
<extension point="org.eclipse.help.toc"> <extension point="org.eclipse.help.toc">
<toc file="topics_Guide.xml"/> <toc file="topics_Guide.xml"/>
<toc file="topics_Reference.xml"/> <toc file="topics_Reference.xml"/>
<toc file="topics_Questions.xml"/> <toc file="topics_Questions.xml"/>
<toc file="topics_Samples.xml"/> <toc file="topics_Samples.xml"/>
</extension> </extension>
<!-- ============================================================================= --> <!-- ============================================================================= -->
<!-- Define Javadoc locations --> <!-- Define Javadoc locations -->
<!-- ============================================================================= --> <!-- ============================================================================= -->
<extension point="org.eclipse.pde.core.javadoc"> <extension point="org.eclipse.pde.core.javadoc">
<javadoc path="reference/api"> <javadoc path="reference/api">
<plugin id="org.eclipse.rse.core" /> <plugin id="org.eclipse.rse.core" />
<plugin id="org.eclipse.rse.services" /> <plugin id="org.eclipse.rse.services" />
<plugin id="org.eclipse.rse.ui" /> <plugin id="org.eclipse.rse.ui" />
</javadoc> </javadoc>
</extension> </extension>
</plugin> </plugin>