mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Bug 558638: Add nature user display names
Change-Id: I2cabb572ab2e4a1ad2c3890267628a0aa13e4211
This commit is contained in:
parent
8bafed71ec
commit
14561b343f
14 changed files with 32 additions and 7 deletions
|
@ -1,10 +1,10 @@
|
|||
Manifest-Version: 1.0
|
||||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: CDT CMake Core
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.cmake.core;singleton:=true
|
||||
Bundle-Version: 1.2.300.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.cmake.core.internal.Activator
|
||||
Bundle-Vendor: Eclipse CDT
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
org.eclipse.core.resources;bundle-version="3.11.0",
|
||||
org.eclipse.debug.core;bundle-version="3.10.0",
|
||||
|
@ -17,3 +17,4 @@ Bundle-ActivationPolicy: lazy
|
|||
Export-Package: org.eclipse.cdt.cmake.core,
|
||||
org.eclipse.cdt.cmake.core.internal;x-friends:="org.eclipse.cdt.cmake.ui"
|
||||
Automatic-Module-Name: org.eclipse.cdt.cmake.core
|
||||
Bundle-Localization: plugin
|
||||
|
|
|
@ -5,5 +5,6 @@ bin.includes = META-INF/,\
|
|||
about.html,\
|
||||
plugin.xml,\
|
||||
schema/,\
|
||||
templates/
|
||||
templates/,\
|
||||
plugin.properties
|
||||
src.includes = about.html
|
||||
|
|
14
build/org.eclipse.cdt.cmake.core/plugin.properties
Normal file
14
build/org.eclipse.cdt.cmake.core/plugin.properties
Normal file
|
@ -0,0 +1,14 @@
|
|||
###############################################################################
|
||||
# Copyright (c) 2019 Kichwa Coders Canada Inc and others.
|
||||
#
|
||||
# This program and the accompanying materials
|
||||
# are made available under the terms of the Eclipse Public License 2.0
|
||||
# which accompanies this distribution, and is available at
|
||||
# https://www.eclipse.org/legal/epl-2.0/
|
||||
#
|
||||
# SPDX-License-Identifier: EPL-2.0
|
||||
###############################################################################
|
||||
pluginName=CDT CMake Core
|
||||
providerName=Eclipse CDT
|
||||
cmakenature.name=CMake Nature
|
||||
cmaketoolChainProvider.name=CMake ToolChain File Provider
|
|
@ -1,9 +1,10 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<?eclipse version="3.4"?>
|
||||
<plugin>
|
||||
<extension-point id="toolChainProvider" name="CMake ToolChain File Provider" schema="schema/toolChainProvider.exsd"/>
|
||||
<extension-point id="toolChainProvider" name="%cmaketoolChainProvider.name" schema="schema/toolChainProvider.exsd"/>
|
||||
<extension
|
||||
id="cmakeNature"
|
||||
name="%cmakenature.name"
|
||||
point="org.eclipse.core.resources.natures">
|
||||
<runtime>
|
||||
<run
|
||||
|
|
|
@ -12,3 +12,4 @@
|
|||
pluginName=CDT Autotools Core
|
||||
providerName=Eclipse CDT
|
||||
extension-point.name = Autotools Core ToolChain File Provider
|
||||
autotoolsNature.name=Autotools Nature
|
|
@ -3,6 +3,7 @@
|
|||
<plugin>
|
||||
<extension
|
||||
id="autotoolsNature"
|
||||
name="%autotoolsNature.name"
|
||||
point="org.eclipse.core.resources.natures">
|
||||
<runtime>
|
||||
<run
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
edHatVendor.name = Red Hat
|
||||
Bundle-Name.0 = Meson Plug-in
|
||||
provider=Eclipse CDT
|
||||
extension-point.name = Meson ToolChain File Provider
|
||||
extension-point.name = Meson ToolChain File Provider
|
||||
mesonnature.name=Meson Nature
|
|
@ -4,6 +4,7 @@
|
|||
<extension-point id="toolChainProvider" name="%extension-point.name" schema="schema/toolChainProvider.exsd"/>
|
||||
<extension
|
||||
id="mesonNature"
|
||||
name="%mesonnature.name"
|
||||
point="org.eclipse.core.resources.natures">
|
||||
<runtime>
|
||||
<run
|
||||
|
|
|
@ -357,7 +357,7 @@
|
|||
<!-- =================================================================================== -->
|
||||
<extension
|
||||
id="ccnature"
|
||||
name="%cnature.name"
|
||||
name="%ccnature.name"
|
||||
point="org.eclipse.core.resources.natures">
|
||||
<runtime>
|
||||
<run
|
||||
|
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.qt.core;singleton:=true
|
||||
Bundle-Version: 2.2.200.qualifier
|
||||
Bundle-Version: 2.2.300.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.internal.qt.core.Activator
|
||||
Bundle-Vendor: %providerName
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
|
|
|
@ -15,3 +15,4 @@ qmlFile.name = QML File
|
|||
qrcFile.name = Qt Resource Collection File
|
||||
qmakeEnvProvider.name = QMake Environment Provider
|
||||
QtInstallHeaders.pathProvider.name = Qt Installed Headers
|
||||
qtNature.name=Qt Nature
|
|
@ -30,6 +30,7 @@
|
|||
</extension>
|
||||
<extension
|
||||
id="qtNature"
|
||||
name="%qtNature.name"
|
||||
point="org.eclipse.core.resources.natures">
|
||||
<runtime>
|
||||
<run
|
||||
|
|
|
@ -14,3 +14,4 @@
|
|||
pluginName=Arduino C++ Core
|
||||
providerName=Eclipse CDT
|
||||
ArduinoBuilder.name=Arduino Builder
|
||||
arduinonature.name=Arduino Nature
|
|
@ -70,6 +70,7 @@
|
|||
</extension>
|
||||
<extension
|
||||
id="arduinoNature"
|
||||
name="%arduinonature.name"
|
||||
point="org.eclipse.core.resources.natures">
|
||||
<runtime>
|
||||
<run
|
||||
|
|
Loading…
Add table
Reference in a new issue