classpath
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Eclipse and Classpath


From: Tom Tromey
Subject: Eclipse and Classpath
Date: 22 Apr 2004 09:26:34 -0600
User-agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50

Yesterday I spent a little time setting up Classpath as a project in
Eclipse.  After some tweaking, I was able to come up with the appended
patch.  This just adds a couple files that enable Classpath as an
Eclipse project.

If you try this out, you will have to make a "Configuration.java" by
hand.  I did this by copying Configuration.java.in and editing the
result to be valid Java source.  It is probably possible to teach
Eclipse to run autogen.sh and configure, but I haven't tried this.

I'd like to check this in but thought I'd first see if anybody has
strong objections to it.  mjw was down on the idea on irc, but I'm
hoping that was just lack of food :-).

Tom

Index: .classpath
===================================================================
RCS file: .classpath
diff -N .classpath
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ .classpath 22 Apr 2004 04:49:30 -0000
@@ -0,0 +1,9 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+    <classpathentry
+        
excluding="external/jaxp/source/|vm/reference/|compat/|test/|external/jaxp/tests/|testsuite/|**/Test.java|**/TestAWT.java|gnu/javax/swing/|**/SliderTest.java"
+        kind="src" path=""/>
+    <classpathentry kind="src" path="external/jaxp/source"/>
+    <classpathentry kind="src" path="vm/reference"/>
+    <classpathentry kind="output" path="bin"/>
+</classpath>
Index: .project
===================================================================
RCS file: .project
diff -N .project
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ .project 22 Apr 2004 04:49:30 -0000
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+       <name>classpath</name>
+       <comment></comment>
+       <projects>
+       </projects>
+       <buildSpec>
+               <buildCommand>
+                       <name>org.eclipse.jdt.core.javabuilder</name>
+                       <arguments>
+                       </arguments>
+               </buildCommand>
+       </buildSpec>
+       <natures>
+               <nature>org.eclipse.jdt.core.javanature</nature>
+       </natures>
+</projectDescription>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]