Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 50313a6e23f7f26afad2f1be9f5361ce9185c1b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         point="org.eclipse.cdt.ui.newToolChainWizards">
      <wizard
            class="org.eclipse.cdt.build.gcc.ui.internal.NewGCCToolChainWizard"
            name="GCC"
            providerId="org.eclipse.cdt.build.gcc.core.provider.user">
      </wizard>
      <wizard
            class="org.eclipse.cdt.build.gcc.ui.internal.NewClangToolChainWizard"
            name="clang"
            providerId="org.eclipse.cdt.build.gcc.core.provider.user">
      </wizard>
   </extension>

</plugin>

Back to the top