Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2003-06-23 14:36:31 +0000
committerDoug Schaefer2003-06-23 14:36:31 +0000
commitb8059d7f27fb2f28cb77e7faa38ba6112d9a61cf (patch)
tree58ed23f5b36997e87d438cc49809d112f3cf2180 /core/org.eclipse.cdt.ui.tests/plugin.xml
parent40e2cbf0b08aa51acdfaeeb48ef18cf83e1be6b3 (diff)
downloadorg.eclipse.cdt-b8059d7f27fb2f28cb77e7faa38ba6112d9a61cf.tar.gz
org.eclipse.cdt-b8059d7f27fb2f28cb77e7faa38ba6112d9a61cf.tar.xz
org.eclipse.cdt-b8059d7f27fb2f28cb77e7faa38ba6112d9a61cf.zip
Patch for Sean Evoy:
1. Fix for bug 38665 - Need to select platform before configurations become visible 2. Icon files that were not delivered in my last patch 3. A new interface for clients of the build model to extract include paths and defined symbols for managed projects. Unmanaged projects to follow soon.
Diffstat (limited to 'core/org.eclipse.cdt.ui.tests/plugin.xml')
-rw-r--r--core/org.eclipse.cdt.ui.tests/plugin.xml103
1 files changed, 0 insertions, 103 deletions
diff --git a/core/org.eclipse.cdt.ui.tests/plugin.xml b/core/org.eclipse.cdt.ui.tests/plugin.xml
index eb641992693..69a13d4d06a 100644
--- a/core/org.eclipse.cdt.ui.tests/plugin.xml
+++ b/core/org.eclipse.cdt.ui.tests/plugin.xml
@@ -22,107 +22,4 @@
</requires>
- <extension
- id="buildTest"
- name="Tools for Build Test"
- point="org.eclipse.cdt.core.ManagedBuildInfo">
- <target
- isTest="true"
- name="Test Root"
- defaultExtension="toor"
- isAbstract="false"
- id="test.root">
- <tool
- sources="foo,bar"
- name="Root Tool"
- outputs="toor"
- command="doIt"
- id="root.tool">
- <optionCategory
- owner="root.tool"
- name="Category"
- id="category">
- </optionCategory>
- <option
- name="List Option in Top"
- command="-L"
- valueType="stringList"
- id="list.option">
- <optionValue
- value="a">
- </optionValue>
- <optionValue
- value="b">
- </optionValue>
- </option>
- <option
- defaultValue="false"
- name="Boolean Option in Top"
- command="-b"
- valueType="boolean"
- id="boolean.option">
- </option>
- <option
- defaultValue="x"
- name="String Option in Category"
- category="category"
- valueType="string"
- id="string.option">
- </option>
- <option
- name="Enumerated Option in Category"
- category="category"
- valueType="enumerated"
- id="enumerated.option">
- <optionEnum
- name="Default Enum"
- isDefault="true"
- command="-e1"
- id="default.enum.option">
- </optionEnum>
- <optionEnum
- name="Another Enum"
- command="-e2"
- id="another.enum.option">
- </optionEnum>
- </option>
- </tool>
- <configuration
- name="Root Config"
- id="root.config">
- </configuration>
- <configuration
- name="Root Override Config"
- id="root.override.config">
- <toolRef
- id="root.tool">
- <optionRef
- defaultValue="y"
- id="string.option">
- </optionRef>
- <optionRef
- defaultValue="true"
- id="boolean.option">
- </optionRef>
- </toolRef>
- </configuration>
- </target>
- <target
- isTest="true"
- name="Test Sub"
- parent="test.root"
- defaultExtension="bus"
- isAbstract="false"
- id="test.sub">
- <configuration
- name="Sub Config"
- id="sub.config">
- </configuration>
- <tool
- name="Sub Tool"
- id="tool.sub">
- </tool>
- </target>
- </extension>
-
</plugin>

Back to the top