Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/org.eclipse.cdt.core/.classpath2
-rw-r--r--core/org.eclipse.cdt.core/build.properties3
-rw-r--r--core/org.eclipse.cdt.core/plugin.xml3
3 files changed, 5 insertions, 3 deletions
diff --git a/core/org.eclipse.cdt.core/.classpath b/core/org.eclipse.cdt.core/.classpath
index 0755b6ef457..f0d083f5476 100644
--- a/core/org.eclipse.cdt.core/.classpath
+++ b/core/org.eclipse.cdt.core/.classpath
@@ -5,9 +5,9 @@
<classpathentry kind="src" path="model/"/>
<classpathentry kind="src" path="src/"/>
<classpathentry kind="src" path="utils/"/>
- <classpathentry kind="src" path="parser/"/>
<classpathentry kind="src" path="search/"/>
<classpathentry kind="src" path="dependency/"/>
+ <classpathentry kind="src" path="parser"/>
<classpathentry kind="src" path="/org.eclipse.core.resources"/>
<classpathentry kind="src" path="/org.eclipse.core.runtime"/>
<classpathentry kind="src" path="/org.apache.xerces"/>
diff --git a/core/org.eclipse.cdt.core/build.properties b/core/org.eclipse.cdt.core/build.properties
index 79612cab75f..3a56671acb6 100644
--- a/core/org.eclipse.cdt.core/build.properties
+++ b/core/org.eclipse.cdt.core/build.properties
@@ -15,7 +15,6 @@ source.cdtcore.jar = build/,\
model/,\
src/,\
utils/,\
- parser/,\
- ,\
search/,\
dependency/
+source.cdtparser.jar = parser/
diff --git a/core/org.eclipse.cdt.core/plugin.xml b/core/org.eclipse.cdt.core/plugin.xml
index 783435950e8..8c73a6e619c 100644
--- a/core/org.eclipse.cdt.core/plugin.xml
+++ b/core/org.eclipse.cdt.core/plugin.xml
@@ -10,6 +10,9 @@
<library name="cdtcore.jar">
<export name="*"/>
</library>
+ <library name="cdtparser.jar">
+ <export name="*"/>
+ </library>
</runtime>
<requires>
<import plugin="org.eclipse.core.resources"/>

Back to the top