1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-09-06 18:13:10 +02:00
cdt/build/org.eclipse.cdt.cmake.ui/plugin.xml
Jesper Eskilson 1d09e0e2af Added property page for CMake projects
Currently only contains a button for launching the CMake GUI
(cmake-qt-gui), but we might want to put other things in here as well.


Change-Id: Ia89ad409eaad17a170cf1e2f1cd4fb31a7d678e2
Signed-off-by: Jesper Eskilson <jesper.eskilson@iar.com>
2016-03-14 16:08:35 -04:00

30 lines
975 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
point="org.eclipse.ui.newWizards">
<wizard
category="org.eclipse.cdt.ui.newCWizards"
class="org.eclipse.cdt.cmake.ui.internal.NewCMakeProjectWizard"
finalPerspective="org.eclipse.cdt.ui.CPerspective"
icon="icons/newcc_app.gif"
id="org.eclipse.cdt.cmake.ui.newProjectWizard"
name="CMake Project"
project="true">
</wizard>
</extension>
<extension
point="org.eclipse.ui.propertyPages">
<page
class="org.eclipse.cdt.cmake.ui.properties.CMakePropertyPage"
id="org.eclipse.cdt.cmake.ui.properties.cmakePropertyPage"
name="CMake">
<enabledWhen>
<instanceof
value="org.eclipse.core.resources.IProject">
</instanceof>
</enabledWhen>
</page>
</extension>
</plugin>