1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-07 17:15:25 +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
# 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
# (i.e. the contents of org.eclipse.rse.build)
builder = "."
# "working" is where the build is actually done, does not need to exist
working = "c:/temp/build"
working = "../build"
# make these absolute paths
eclipse = File.expand_path(eclipse)

View file

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

View file

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