From bd8dce42301583e8a84e847de7b5b75207dfe086 Mon Sep 17 00:00:00 2001
From: SubaruWRC <ryan.lamothe@quantumworx.com>
Date: Thu, 25 Sep 2014 12:51:44 -0700
Subject: [PATCH] Made top-level project an Eclipse project so that entire tree
 can be 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.

---
 .classpath                 |  5 +++++
 .gitignore                 |  1 +
 .project                   | 17 +++++++++++++++++
 com.amd.aparapi/.gitignore |  1 +
 4 files changed, 24 insertions(+)
 create mode 100644 .classpath
 create mode 100644 .project
 create mode 100644 com.amd.aparapi/.gitignore

diff --git a/.classpath b/.classpath
new file mode 100644
index 00000000..ac37fb2e
--- /dev/null
+++ b/.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>
diff --git a/.gitignore b/.gitignore
index 173ea629..7bb03ac9 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,4 @@
 
 # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
 hs_err_pid*
+/bin/
diff --git a/.project b/.project
new file mode 100644
index 00000000..93a4260e
--- /dev/null
+++ b/.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>
diff --git a/com.amd.aparapi/.gitignore b/com.amd.aparapi/.gitignore
new file mode 100644
index 00000000..840e7d31
--- /dev/null
+++ b/com.amd.aparapi/.gitignore
@@ -0,0 +1 @@
+/classes/
-- 
GitLab