Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3edcc339bcd6f75713f4a76f5dd5be0d06f95205 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <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>
            <and>
               <instanceof
                     value="org.eclipse.core.resources.IProject">
               </instanceof>
               <test
                     property="org.eclipse.core.resources.projectNature"
                     value="org.eclipse.cdt.cmake.core.cmakeNature">
               </test>
            </and>
         </enabledWhen>
      </page>
   </extension>
   <extension
         point="org.eclipse.tools.templates.ui.templates">
      <tag
            id="org.eclipse.cdt.cmake.ui.tag"
            label="CMake">
      </tag>
      <template
            icon="icons/cmake_logo-main.png"
            id="org.eclipse.cdt.cmake.ui.emptyProjectTemplate"
            label="CMake Project"
            wizard="org.eclipse.cdt.cmake.ui.internal.NewCMakeProjectWizard">
         <description>
            A CMake project with a Hello World executable to get started.
         </description>
         <tagReference
               id="org.eclipse.cdt.ui.cdtTag">
         </tagReference>
         <tagReference
               id="org.eclipse.cdt.cmake.ui.tag">
         </tagReference>
      </template>
   </extension>

</plugin>

Back to the top