[Esbox-commits] r172 - trunk/org.indt.esbox.ui
raul at garage.maemo.org
raul at garage.maemo.org
Tue Oct 23 01:26:47 EEST 2007
Author: raul
Date: 2007-10-23 01:26:46 +0300 (Tue, 23 Oct 2007)
New Revision: 172
Modified:
trunk/org.indt.esbox.ui/plugin.xml
Log:
Modified: trunk/org.indt.esbox.ui/plugin.xml
===================================================================
--- trunk/org.indt.esbox.ui/plugin.xml 2007-10-22 22:25:40 UTC (rev 171)
+++ trunk/org.indt.esbox.ui/plugin.xml 2007-10-22 22:26:46 UTC (rev 172)
@@ -45,7 +45,7 @@
<extension
point="org.eclipse.ui.preferencePages">
<page
- name="Scratchbox"
+ name="ESbox"
class="org.indt.esbox.ui.preferences.ScratchboxPreferencesPage"
id="org.indt.esbox.ui.esboxPreferencePage">
</page>
@@ -69,52 +69,83 @@
</page>
</extension>
<extension
- point="org.eclipse.cdt.core.templates">
+ point="org.indt.esbox.core.esbox_templates">
<template
filterPattern=".*"
id="org.indt.esbox.ui.template.executable.emptyproject"
location="templates/EmptyProject/template.xml"
- projectType="org.eclipse.cdt.build.core.buildArtefactType.exe">
+ projectType="org.indt.esbox.ui.projectType.automake">
</template>
<template
filterPattern=".*"
id="org.indt.esbox.ui.template.executable.hildon_gui"
location="templates/HildonGUIApplication/template.xml"
- projectType="org.eclipse.cdt.build.core.buildArtefactType.exe">
+ projectType="org.indt.esbox.ui.projectType.automake">
</template>
<template
filterPattern=".*"
id="org.indt.esbox.ui.template.executable.hildon_plugin"
location="templates/HildonDesktopPlugins/template.xml"
- projectType="org.eclipse.cdt.build.core.buildArtefactType.exe">
+ projectType="org.indt.esbox.ui.projectType.automake">
</template>
<template
filterPattern=".*"
id="org.indt.esbox.ui.template.executable.maemo_pad"
location="templates/MaemoPad/template.xml"
- projectType="org.eclipse.cdt.build.core.buildArtefactType.exe">
+ projectType="org.indt.esbox.ui.projectType.automake">
</template>
<template
filterPattern=".*"
id="org.indt.esbox.ui.template.makefile.emptyproject"
location="templates/EmptyProject/template.xml"
- projectType="org.eclipse.cdt.build.makefile.projectType">
+ projectType="org.indt.esbox.ui.projectType.makefile">
</template>
<template
filterPattern=".*"
id="org.indt.esbox.ui.template.makefile.hildon_hello_world"
location="templates/HildonHelloWorldMake/template.xml"
- projectType="org.eclipse.cdt.build.makefile.projectType">
+ projectType="org.indt.esbox.ui.projectType.makefile">
</template>
<template
filterPattern=".*"
id="org.indt.esbox.ui.template.makefile.gtk_hello"
location="templates/GTKHelloWorld/template.xml"
- projectType="org.eclipse.cdt.build.makefile.projectType">
+ projectType="org.indt.esbox.ui.projectType.makefile">
</template>
+
+ <template
+ filterPattern=".*"
+ id="org.indt.esbox.ui.template.executable.cpp.drawexample"
+ location="templates/CppDrawExample/template.xml"
+ projectType="org.indt.esbox.ui.projectType.cpp">
+ </template>
+ <template
+ filterPattern=".*"
+ id="org.indt.esbox.ui.template.executable.cpp.gconfexample"
+ location="templates/CppGconfExample/template.xml"
+ projectType="org.indt.esbox.ui.projectType.cpp">
+ </template>
+ <template
+ filterPattern=".*"
+ id="org.indt.esbox.ui.template.executable.cpp.helloworld"
+ location="templates/CppHelloWorld/template.xml"
+ projectType="org.indt.esbox.ui.projectType.cpp">
+ </template>
+ <template
+ filterPattern=".*"
+ id="org.indt.esbox.ui.template.executable.cpp.helloworld18n"
+ location="templates/CppHelloWorldI18n/template.xml"
+ projectType="org.indt.esbox.ui.projectType.cpp">
+ </template>
+ <template
+ filterPattern=".*"
+ id="org.indt.esbox.ui.template.executable.cpp.newhelloworld"
+ location="templates/CppNewHelloWorld/template.xml"
+ projectType="org.indt.esbox.ui.projectType.cpp">
+ </template>
</extension>
<extension
- point="org.eclipse.cdt.core.templateAssociations">
+ point="org.indt.esbox.core.esbox_templateAssociations">
<template
id="org.indt.esbox.ui.template.executable.emptyproject">
<toolChain
@@ -157,6 +188,37 @@
id="cdt.managedbuild.toolchain.gnu.base">
</toolChain>
</template>
+
+ <template
+ id="org.indt.esbox.ui.template.executable.cpp.drawexample">
+ <toolChain
+ id="cdt.managedbuild.toolchain.gnu.base">
+ </toolChain>
+ </template>
+ <template
+ id="org.indt.esbox.ui.template.executable.cpp.gconfexample">
+ <toolChain
+ id="cdt.managedbuild.toolchain.gnu.base">
+ </toolChain>
+ </template>
+ <template
+ id="org.indt.esbox.ui.template.executable.cpp.helloworld">
+ <toolChain
+ id="cdt.managedbuild.toolchain.gnu.base">
+ </toolChain>
+ </template>
+ <template
+ id="org.indt.esbox.ui.template.executable.cpp.helloworld18n">
+ <toolChain
+ id="cdt.managedbuild.toolchain.gnu.base">
+ </toolChain>
+ </template>
+ <template
+ id="org.indt.esbox.ui.template.executable.cpp.newhelloworld">
+ <toolChain
+ id="cdt.managedbuild.toolchain.gnu.base">
+ </toolChain>
+ </template>
</extension>
<extension
point="org.eclipse.ui.actionSets">
@@ -290,5 +352,20 @@
parent="org.indt.esbox.ui.preferences.ESboxEnvPreferencePage">
</tab>
</extension>
+ <extension
+ point="org.eclipse.cdt.managedbuilder.core.buildDefinitions">
+ <projectType
+ id="org.indt.esbox.ui.projectType.automake"
+ name="Automake Project">
+ </projectType>
+ <projectType
+ id="org.indt.esbox.ui.projectType.makefile"
+ name="Makefile Project">
+ </projectType>
+ <projectType
+ id="org.indt.esbox.ui.projectType.cpp"
+ name="C++ Project">
+ </projectType>
+ </extension>
</plugin>
More information about the Esbox-commits
mailing list