Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVladimir Hirsl2005-01-24 18:49:34 +0000
committerVladimir Hirsl2005-01-24 18:49:34 +0000
commit66d9c39ea67f6e1a47769ba30254a6560a7ef4f3 (patch)
tree1256a4581e8ea431cb1905e6bf2b8d4f9a1913f1 /build/org.eclipse.cdt.make.ui/plugin.xml
parente7a9587ad8cc3d788a60034af5fd95ea78a1d1bb (diff)
downloadorg.eclipse.cdt-66d9c39ea67f6e1a47769ba30254a6560a7ef4f3.tar.gz
org.eclipse.cdt-66d9c39ea67f6e1a47769ba30254a6560a7ef4f3.tar.xz
org.eclipse.cdt-66d9c39ea67f6e1a47769ba30254a6560a7ef4f3.zip
New Scanner Config Discovery 'framework' in preparation for per file SC discovery. Currently implemented: Per project profiles for standard make and managed builders.
Diffstat (limited to 'build/org.eclipse.cdt.make.ui/plugin.xml')
-rw-r--r--build/org.eclipse.cdt.make.ui/plugin.xml8
1 files changed, 8 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.make.ui/plugin.xml b/build/org.eclipse.cdt.make.ui/plugin.xml
index 39ea34e91c2..c779593c414 100644
--- a/build/org.eclipse.cdt.make.ui/plugin.xml
+++ b/build/org.eclipse.cdt.make.ui/plugin.xml
@@ -25,6 +25,7 @@
<import plugin="org.eclipse.cdt.make.core"/>
<import plugin="org.eclipse.core.runtime"/>
</requires>
+ <extension-point id="DiscoveryProfilePage" name="%discoveryProfilePage.name" schema="schema/DiscoveryProfilePage.exsd"/>
<extension
@@ -526,4 +527,11 @@
<extension
point="org.eclipse.core.runtime.preferences">
<initializer class="org.eclipse.cdt.make.internal.ui.MakeUIPreferenceInitializer"/>
+ </extension>
+ <extension
+ point="org.eclipse.cdt.make.ui.DiscoveryProfilePage">
+ <profilePage
+ class="org.eclipse.cdt.make.ui.dialogs.GCCPerProjectSCDProfilePage"
+ name="%GCCPerProjectProfile.name"
+ profileId="org.eclipse.cdt.make.core.GCCStandardMakePerProjectProfile"/>
</extension></plugin>

Back to the top