Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Applied Head: Put CDT parser into it's own jar

Once the appropriate code changes are made, this will allow the parser to 
be used outside of eclipse.

Index: .classpath
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/.classpath,v
retrieving revision 1.12
diff -u -r1.12 .classpath
--- .classpath  12 Sep 2003 18:19:05 -0000      1.12
+++ .classpath  5 Nov 2003 19:19:46 -0000
@@ -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"/>
Index: build.properties
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/build.properties,v
retrieving revision 1.13
diff -u -r1.13 build.properties
--- build.properties    18 Sep 2003 17:56:47 -0000      1.13
+++ build.properties    5 Nov 2003 19:19:46 -0000
@@ -15,7 +15,6 @@
                      model/,\
                      src/,\
                      utils/,\
-                     parser/,\
-                     ,\
                      search/,\
                      dependency/
+source.cdtparser.jar = parser/
Index: plugin.xml
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/plugin.xml,v
retrieving revision 1.36
diff -u -r1.36 plugin.xml
--- plugin.xml  19 Oct 2003 01:16:41 -0000      1.36
+++ plugin.xml  5 Nov 2003 19:19:47 -0000
@@ -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"/>


Doug Schaefer, Senior Software Developer
IBM Rational Software, Ottawa, Ontario, Canada


Back to the top