Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Inglis2005-03-24 17:49:54 +0000
committerDavid Inglis2005-03-24 17:49:54 +0000
commitb23b32c5e52fa01d1eef55e11c1e63b43dee955e (patch)
treeaa2e9e38fc5bd77fb53fccc272c3508af1f8ea77 /build/org.eclipse.cdt.make.core.tests/plugin.xml
parent58e5610d98e9fb14c98c938417d662d5c2faa8a7 (diff)
downloadorg.eclipse.cdt-b23b32c5e52fa01d1eef55e11c1e63b43dee955e.tar.gz
org.eclipse.cdt-b23b32c5e52fa01d1eef55e11c1e63b43dee955e.tar.xz
org.eclipse.cdt-b23b32c5e52fa01d1eef55e11c1e63b43dee955e.zip
move standard build test to it own plugin
Diffstat (limited to 'build/org.eclipse.cdt.make.core.tests/plugin.xml')
-rw-r--r--build/org.eclipse.cdt.make.core.tests/plugin.xml24
1 files changed, 24 insertions, 0 deletions
diff --git a/build/org.eclipse.cdt.make.core.tests/plugin.xml b/build/org.eclipse.cdt.make.core.tests/plugin.xml
new file mode 100644
index 00000000000..f7e2ecbcf2f
--- /dev/null
+++ b/build/org.eclipse.cdt.make.core.tests/plugin.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<?eclipse version="3.0"?>
+<plugin
+ id="org.eclipse.cdt.make.core.tests"
+ name="Make Core Tests Plug-in"
+ version="3.0.0"
+ provider-name=""
+ class="org.eclipse.cdt.make.core.tests.MakeTestsPlugin">
+
+ <runtime>
+ <library name="makecoretests.jar">
+ <export name="*"/>
+ </library>
+ </runtime>
+
+ <requires>
+ <import plugin="org.eclipse.core.runtime"/>
+ <import plugin="org.junit"/>
+ <import plugin="org.eclipse.cdt.make.core"/>
+ <import plugin="org.eclipse.cdt.core"/>
+ <import plugin="org.eclipse.core.resources"/>
+ </requires>
+
+</plugin>

Back to the top