Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 042d05e8d13d96acb9172bf2b6f0b9ea90d4e004 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?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.ui.preferencePages">
      <page
            category="org.eclipse.cdt.ui.preferences.CPluginPreferencePage"
            class="org.eclipse.cdt.cmake.ui.internal.CMakePreferencePage"
            id="org.eclipse.cdt.cmake.ui.page1"
            name="%cmake.preferences.name">
      </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.newProjectTemplate"
            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>
      <template
            icon="icons/cmake_logo-main.png"
            id="org.eclipse.cdt.cmake.ui.emptyProjectTemplate"
            label="Empty or Existing CMake Project"
            wizard="org.eclipse.cdt.cmake.ui.internal.EmptyCMakeProjectWizard">
         <description>
            Create a CMake project with no files. Can be used to create one over existing content.
         </description>
         <tagReference
               id="org.eclipse.cdt.ui.cdtTag">
         </tagReference>
         <tagReference
               id="org.eclipse.cdt.cmake.ui.tag">
         </tagReference>
      </template>
   </extension>
   <extension
         point="org.eclipse.cdt.launch.coreBuildTab">
      <provider
            nature="org.eclipse.cdt.cmake.core.cmakeNature"
            priority="10"
            tabClass="org.eclipse.cdt.cmake.ui.internal.CMakeBuildTab">
      </provider>
   </extension>

</plugin>

Back to the top