mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-09 01:05:38 +02:00
Fixed build for jar'd plugins
cleaned up .project files
This commit is contained in:
parent
314113adb0
commit
58f26dfed6
36 changed files with 63 additions and 85 deletions
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.make.core; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.make.core; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: cdtmakecore.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.make.core.MakeCorePlugin
|
Bundle-Activator: org.eclipse.cdt.make.core.MakeCorePlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
@ -24,4 +23,4 @@ Require-Bundle: org.eclipse.core.resources,
|
||||||
org.eclipse.core.variables,
|
org.eclipse.core.variables,
|
||||||
org.eclipse.core.runtime,
|
org.eclipse.core.runtime,
|
||||||
org.eclipse.cdt.core
|
org.eclipse.cdt.core
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -10,12 +10,12 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
|
|
||||||
bin.includes = plugin.xml,\
|
bin.includes = plugin.xml,\
|
||||||
*.jar,\
|
about.html,\
|
||||||
cdtmakecore.jar,\
|
|
||||||
*.html,\
|
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
builtin/,\
|
builtin/,\
|
||||||
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
src.includes = schema/,\
|
src.includes = schema/,\
|
||||||
.options
|
.options
|
||||||
source.cdtmakecore.jar = src/
|
|
||||||
|
source.. = src/
|
||||||
|
|
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.make.ui; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.make.ui; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: cdtmakeui.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.make.internal.ui.MakeUIPlugin
|
Bundle-Activator: org.eclipse.cdt.make.internal.ui.MakeUIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
@ -33,4 +32,4 @@ Require-Bundle: org.eclipse.ui.ide,
|
||||||
org.eclipse.cdt.make.core,
|
org.eclipse.cdt.make.core,
|
||||||
org.eclipse.core.runtime,
|
org.eclipse.core.runtime,
|
||||||
org.eclipse.debug.ui
|
org.eclipse.debug.ui
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -9,10 +9,10 @@
|
||||||
# QNX Software Systems - Initial API and implementation
|
# QNX Software Systems - Initial API and implementation
|
||||||
###############################################################################
|
###############################################################################
|
||||||
bin.includes = plugin.xml,\
|
bin.includes = plugin.xml,\
|
||||||
*.jar,\
|
|
||||||
cdtmakeui.jar,\
|
|
||||||
icons/,\
|
icons/,\
|
||||||
*.html,\
|
about.html,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
source.cdtmakeui.jar = src/
|
source.. = src/
|
||||||
|
src.includes = schema/
|
||||||
|
|
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.core; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.core; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: mngbuildcore.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.managedbuilder.core.ManagedBuilderCorePlugin
|
Bundle-Activator: org.eclipse.cdt.managedbuilder.core.ManagedBuilderCorePlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
@ -25,4 +24,4 @@ Require-Bundle: org.eclipse.cdt.core,
|
||||||
org.eclipse.cdt.make.core,
|
org.eclipse.cdt.make.core,
|
||||||
org.eclipse.ui,
|
org.eclipse.ui,
|
||||||
org.eclipse.core.variables
|
org.eclipse.core.variables
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -11,7 +11,8 @@
|
||||||
bin.includes = plugin.xml,\
|
bin.includes = plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
about.html,\
|
about.html,\
|
||||||
mngbuildcore.jar,\
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
source.mngbuildcore.jar = src/
|
|
||||||
src.includes = schema/
|
src.includes = schema/
|
||||||
|
source.. = src/
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.gnu.ui; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.gnu.ui; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: gnuui.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.managedbuilder.gnu.ui.GnuUIPlugin
|
Bundle-Activator: org.eclipse.cdt.managedbuilder.gnu.ui.GnuUIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
@ -12,4 +11,4 @@ Export-Package: org.eclipse.cdt.managedbuilder.gnu.cygwin,
|
||||||
Require-Bundle: org.eclipse.core.runtime,
|
Require-Bundle: org.eclipse.core.runtime,
|
||||||
org.eclipse.cdt.managedbuilder.core,
|
org.eclipse.cdt.managedbuilder.core,
|
||||||
org.eclipse.cdt.core
|
org.eclipse.cdt.core
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -10,9 +10,8 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
bin.includes = plugin.xml,\
|
bin.includes = plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
gnuui.jar,\
|
|
||||||
about.html,\
|
about.html,\
|
||||||
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
jars.compile.order = gnuui.jar
|
source.. = src/
|
||||||
source.gnuui.jar = src/
|
|
||||||
output.gnuui.jar = bin/
|
|
||||||
|
|
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.ui; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.managedbuilder.ui; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: mgdbuildui.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.managedbuilder.internal.ui.ManagedBuilderUIPlugin
|
Bundle-Activator: org.eclipse.cdt.managedbuilder.internal.ui.ManagedBuilderUIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
@ -19,4 +18,4 @@ Require-Bundle: org.eclipse.ui.ide,
|
||||||
org.eclipse.cdt.managedbuilder.core,
|
org.eclipse.cdt.managedbuilder.core,
|
||||||
org.eclipse.core.runtime,
|
org.eclipse.core.runtime,
|
||||||
org.eclipse.core.variables
|
org.eclipse.core.variables
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -12,7 +12,8 @@ bin.includes = plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
about.html,\
|
about.html,\
|
||||||
icons/,\
|
icons/,\
|
||||||
mgdbuildui.jar,\
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
source.mgdbuildui.jar = src/
|
|
||||||
src.includes = schema/
|
src.includes = schema/
|
||||||
|
source.. = src/
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
<name>org.eclipse.cdt.core.aix</name>
|
<name>org.eclipse.cdt.core.aix</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
<project>org.eclipse.cdt.core</project>
|
|
||||||
</projects>
|
</projects>
|
||||||
<buildSpec>
|
<buildSpec>
|
||||||
<buildCommand>
|
<buildCommand>
|
||||||
|
|
|
@ -10,9 +10,9 @@
|
||||||
###############################################################################
|
###############################################################################
|
||||||
source.cdtaix.jar = src/
|
source.cdtaix.jar = src/
|
||||||
bin.includes = fragment.xml,\
|
bin.includes = fragment.xml,\
|
||||||
*.jar,\
|
|
||||||
cdtaix.jar,\
|
cdtaix.jar,\
|
||||||
fragment.properties,\
|
fragment.properties,\
|
||||||
about.html,\
|
about.html,\
|
||||||
META-INF/
|
META-INF/,\
|
||||||
|
os/
|
||||||
src.includes = library/
|
src.includes = library/
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
<name>org.eclipse.cdt.core.linux</name>
|
<name>org.eclipse.cdt.core.linux</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
<project>org.eclipse.cdt.core</project>
|
|
||||||
</projects>
|
</projects>
|
||||||
<buildSpec>
|
<buildSpec>
|
||||||
<buildCommand>
|
<buildCommand>
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
<name>org.eclipse.cdt.core.macosx</name>
|
<name>org.eclipse.cdt.core.macosx</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
<project>org.eclipse.cdt.core</project>
|
|
||||||
</projects>
|
</projects>
|
||||||
<buildSpec>
|
<buildSpec>
|
||||||
<buildCommand>
|
<buildCommand>
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
<name>org.eclipse.cdt.core.qnx</name>
|
<name>org.eclipse.cdt.core.qnx</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
<project>org.eclipse.cdt.core</project>
|
|
||||||
</projects>
|
</projects>
|
||||||
<buildSpec>
|
<buildSpec>
|
||||||
<buildCommand>
|
<buildCommand>
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
<name>org.eclipse.cdt.core.solaris</name>
|
<name>org.eclipse.cdt.core.solaris</name>
|
||||||
<comment></comment>
|
<comment></comment>
|
||||||
<projects>
|
<projects>
|
||||||
<project>org.eclipse.cdt.core</project>
|
|
||||||
</projects>
|
</projects>
|
||||||
<buildSpec>
|
<buildSpec>
|
||||||
<buildCommand>
|
<buildCommand>
|
||||||
|
|
|
@ -28,4 +28,4 @@ Require-Bundle: org.eclipse.core.resources,
|
||||||
org.eclipse.ui.ide,
|
org.eclipse.ui.ide,
|
||||||
org.eclipse.jface,
|
org.eclipse.jface,
|
||||||
org.eclipse.ui
|
org.eclipse.ui
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -3,12 +3,10 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.core; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.core; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: cdtcore.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
|
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Export-Package: .,
|
Export-Package: org.eclipse.cdt.core,
|
||||||
org.eclipse.cdt.core,
|
|
||||||
org.eclipse.cdt.core.browser,
|
org.eclipse.cdt.core.browser,
|
||||||
org.eclipse.cdt.core.browser.typehierarchy,
|
org.eclipse.cdt.core.browser.typehierarchy,
|
||||||
org.eclipse.cdt.core.dom,
|
org.eclipse.cdt.core.dom,
|
||||||
|
@ -86,4 +84,4 @@ Require-Bundle: org.eclipse.core.resources,
|
||||||
org.eclipse.core.runtime,
|
org.eclipse.core.runtime,
|
||||||
org.eclipse.text,
|
org.eclipse.text,
|
||||||
org.eclipse.core.variables
|
org.eclipse.core.variables
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -11,10 +11,9 @@
|
||||||
bin.includes = plugin.xml,\
|
bin.includes = plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
about.html,\
|
about.html,\
|
||||||
cdtcore.jar,\
|
|
||||||
template/,\
|
template/,\
|
||||||
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
jars.compile.order = cdtcore.jar
|
|
||||||
src.includes = schema/,\
|
src.includes = schema/,\
|
||||||
doc/,\
|
doc/,\
|
||||||
.options
|
.options
|
||||||
|
@ -25,12 +24,11 @@ javadoc.packages = org.eclipse.cdt.core.*,\
|
||||||
org.eclipse.cdt.utils.*,\
|
org.eclipse.cdt.utils.*,\
|
||||||
org.eclipse.cdt.utils.elf.*,\
|
org.eclipse.cdt.utils.elf.*,\
|
||||||
org.eclipse.cdt.utils.spawner.*
|
org.eclipse.cdt.utils.spawner.*
|
||||||
source.cdtcore.jar = index/,\
|
source.. = src/,\
|
||||||
model/,\
|
|
||||||
src/,\
|
|
||||||
utils/,\
|
|
||||||
search/,\
|
|
||||||
dependency/,\
|
|
||||||
browser/,\
|
browser/,\
|
||||||
parser/
|
dependency/,\
|
||||||
output.cdtcore.jar = bin/
|
index/,\
|
||||||
|
model/,\
|
||||||
|
parser/,\
|
||||||
|
search/,\
|
||||||
|
utils/
|
||||||
|
|
|
@ -35,4 +35,4 @@ Require-Bundle: org.eclipse.jface.text,
|
||||||
org.eclipse.ui.console,
|
org.eclipse.ui.console,
|
||||||
org.eclipse.core.expressions,
|
org.eclipse.core.expressions,
|
||||||
org.eclipse.cdt.make.core
|
org.eclipse.cdt.make.core
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -3,12 +3,10 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.ui; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.ui; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: cdtui.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.ui.CUIPlugin
|
Bundle-Activator: org.eclipse.cdt.ui.CUIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Export-Package: .,
|
Export-Package: org.eclipse.cdt.internal.corext,
|
||||||
org.eclipse.cdt.internal.corext,
|
|
||||||
org.eclipse.cdt.internal.corext.refactoring,
|
org.eclipse.cdt.internal.corext.refactoring,
|
||||||
org.eclipse.cdt.internal.corext.refactoring.base,
|
org.eclipse.cdt.internal.corext.refactoring.base,
|
||||||
org.eclipse.cdt.internal.corext.refactoring.changes,
|
org.eclipse.cdt.internal.corext.refactoring.changes,
|
||||||
|
@ -76,4 +74,4 @@ Require-Bundle: org.eclipse.ui.ide,
|
||||||
org.eclipse.core.filebuffers,
|
org.eclipse.core.filebuffers,
|
||||||
org.eclipse.core.runtime,
|
org.eclipse.core.runtime,
|
||||||
org.eclipse.help
|
org.eclipse.help
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -14,15 +14,15 @@ bin.includes = about.html,\
|
||||||
icons/,\
|
icons/,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
templates/,\
|
templates/,\
|
||||||
cdtui.jar,\
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
source.cdtui.jar = src/,\
|
|
||||||
utils.ui/,\
|
|
||||||
browser/,\
|
|
||||||
refactor/
|
|
||||||
src.includes = about.html,\
|
src.includes = about.html,\
|
||||||
schema/
|
schema/
|
||||||
javadoc.packages = org.eclipse.cdt.ui.*,\
|
javadoc.packages = org.eclipse.cdt.ui.*,\
|
||||||
org.eclipse.cdt.ui.wizards.*,\
|
org.eclipse.cdt.ui.wizards.*,\
|
||||||
org.eclipse.cdt.ui.wizards.conversion.*
|
org.eclipse.cdt.ui.wizards.conversion.*
|
||||||
output.cdtui.jar = bin/
|
|
||||||
|
source.. = src/,\
|
||||||
|
browser/,\
|
||||||
|
utils.ui/,\
|
||||||
|
refactor/
|
||||||
|
|
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.debug.core; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.debug.core; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: cdtdebugcore.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.debug.core.CDebugCorePlugin
|
Bundle-Activator: org.eclipse.cdt.debug.core.CDebugCorePlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -12,14 +12,13 @@
|
||||||
bin.includes = plugin.xml,\
|
bin.includes = plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
about.html,\
|
about.html,\
|
||||||
cdtdebugcore.jar,\
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
source.cdtdebugcore.jar = src/,\
|
|
||||||
cdi/
|
|
||||||
javadoc.packages = org.eclipse.cdt.debug.core.*,\
|
javadoc.packages = org.eclipse.cdt.debug.core.*,\
|
||||||
org.eclipse.cdt.debug.core.cdi.*,\
|
org.eclipse.cdt.debug.core.cdi.*,\
|
||||||
org.eclipse.cdt.debug.core.cdi.event.*,\
|
org.eclipse.cdt.debug.core.cdi.event.*,\
|
||||||
org.eclipse.cdt.debug.core.cdi.model.*
|
org.eclipse.cdt.debug.core.cdi.model.*
|
||||||
src.includes = schema/
|
src.includes = schema/
|
||||||
jars.compile.order =
|
source.. = src/,\
|
||||||
output.cdtdebugcore.jar = bin/
|
cdi/
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.debug.mi.core; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.debug.mi.core; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: cdtmicore.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.debug.mi.core.MIPlugin
|
Bundle-Activator: org.eclipse.cdt.debug.mi.core.MIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -12,15 +12,14 @@
|
||||||
bin.includes = plugin.xml,\
|
bin.includes = plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
about.html,\
|
about.html,\
|
||||||
cdtmicore.jar,\
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
src.includes = .options
|
src.includes = .options
|
||||||
source.cdtmicore.jar = src/,\
|
|
||||||
cdi/,\
|
|
||||||
mi/
|
|
||||||
javadoc.packages = org.eclipse.cdt.debug.mi.core.*,\
|
javadoc.packages = org.eclipse.cdt.debug.mi.core.*,\
|
||||||
org.eclipse.cdt.debug.mi.core.cdi.*,\
|
org.eclipse.cdt.debug.mi.core.cdi.*,\
|
||||||
org.eclipse.cdt.debug.mi.core.command.*,\
|
org.eclipse.cdt.debug.mi.core.command.*,\
|
||||||
org.eclipse.cdt.debug.mi.core.event.*,\
|
org.eclipse.cdt.debug.mi.core.event.*,\
|
||||||
org.eclipse.cdt.debug.mi.core.output.*
|
org.eclipse.cdt.debug.mi.core.output.*
|
||||||
output.cdtmicore.jar = bin/
|
source.. = cdi/,\
|
||||||
|
mi/,\
|
||||||
|
src/
|
||||||
|
|
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.debug.mi.ui; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.debug.mi.ui; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: cdtmiui.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.debug.mi.internal.ui.MIUIPlugin
|
Bundle-Activator: org.eclipse.cdt.debug.mi.internal.ui.MIUIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -13,6 +13,6 @@ bin.includes = plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
about.html,\
|
about.html,\
|
||||||
icons/,\
|
icons/,\
|
||||||
cdtmiui.jar,\
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
source.cdtmiui.jar = src/
|
source.. = src/
|
||||||
|
|
|
@ -17,5 +17,5 @@ Require-Bundle: org.eclipse.ui.ide,
|
||||||
org.eclipse.cdt.core,
|
org.eclipse.cdt.core,
|
||||||
org.eclipse.ui,
|
org.eclipse.ui,
|
||||||
org.eclipse.core.runtime.compatibility
|
org.eclipse.core.runtime.compatibility
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
Plugin-Class: org.eclipse.cdt.debug.testplugin.CTestPlugin
|
Plugin-Class: org.eclipse.cdt.debug.testplugin.CTestPlugin
|
||||||
|
|
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.debug.ui; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.debug.ui; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: cdtdebugui.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.debug.ui.CDebugUIPlugin
|
Bundle-Activator: org.eclipse.cdt.debug.ui.CDebugUIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -13,8 +13,8 @@ bin.includes = plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
about.html,\
|
about.html,\
|
||||||
icons/,\
|
icons/,\
|
||||||
cdtdebugui.jar,\
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
javadoc.packages = org.eclipse.cdt.debug.ui.*,\
|
javadoc.packages = org.eclipse.cdt.debug.ui.*,\
|
||||||
org.eclipse.cdt.debug.ui.sourcelookup.*
|
org.eclipse.cdt.debug.ui.sourcelookup.*
|
||||||
source.cdtdebugui.jar = src/
|
source.. = src/
|
||||||
|
|
|
@ -5,4 +5,4 @@ Bundle-SymbolicName: org.eclipse.cdt.doc.isv; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.help
|
Require-Bundle: org.eclipse.help
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -5,4 +5,4 @@ Bundle-SymbolicName: org.eclipse.cdt.doc.user; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
|
@ -3,7 +3,6 @@ Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.launch; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.launch; singleton:=true
|
||||||
Bundle-Version: 3.1.0.qualifier
|
Bundle-Version: 3.1.0.qualifier
|
||||||
Bundle-ClassPath: cdtlaunch.jar
|
|
||||||
Bundle-Activator: org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin
|
Bundle-Activator: org.eclipse.cdt.launch.internal.ui.LaunchUIPlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -13,9 +13,9 @@ bin.includes = plugin.xml,\
|
||||||
plugin.properties,\
|
plugin.properties,\
|
||||||
icons/,\
|
icons/,\
|
||||||
about.html,\
|
about.html,\
|
||||||
cdtlaunch.jar,\
|
.,\
|
||||||
META-INF/
|
META-INF/
|
||||||
javadoc.packages = org.eclipse.cdt.launch.ui.*,\
|
javadoc.packages = org.eclipse.cdt.launch.ui.*,\
|
||||||
org.eclipse.cdt.launch.sourcelookup*,\
|
org.eclipse.cdt.launch.sourcelookup*,\
|
||||||
org.eclipse.cdt.launch.*
|
org.eclipse.cdt.launch.*
|
||||||
source.cdtlaunch.jar = src/
|
source.. = src/
|
||||||
|
|
|
@ -7,4 +7,4 @@ Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
Require-Bundle: org.eclipse.ui.intro,
|
Require-Bundle: org.eclipse.ui.intro,
|
||||||
org.eclipse.ui.cheatsheets
|
org.eclipse.ui.cheatsheets
|
||||||
Eclipse-AutoStart: true
|
Eclipse-LazyStart: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue