Skip to content

Commit

Permalink
Made top-level project an Eclipse project so that entire tree can be
Browse files Browse the repository at this point in the history
imported, built, edited and managed from within Eclipse, if desired.
Each sub-project then becomes a nested project within Eclipse. Ideally,
this change will also allow us to move to Gradle, which may be desirable
to obtain nice dependency management, versioning, etc.
  • Loading branch information
SubaruWRC committed Sep 25, 2014
1 parent 62ad49b commit bd8dce4
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .classpath
@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="output" path="bin"/>
</classpath>
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -14,3 +14,4 @@

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
/bin/
17 changes: 17 additions & 0 deletions .project
@@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>aparapi</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>
1 change: 1 addition & 0 deletions com.amd.aparapi/.gitignore
@@ -0,0 +1 @@
/classes/

0 comments on commit bd8dce4

Please sign in to comment.