aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ardor3d-performance/build.gradle8
-rw-r--r--settings.gradle2
2 files changed, 10 insertions, 0 deletions
diff --git a/ardor3d-performance/build.gradle b/ardor3d-performance/build.gradle
new file mode 100644
index 0000000..c510997
--- /dev/null
+++ b/ardor3d-performance/build.gradle
@@ -0,0 +1,8 @@
+
+description = 'Ardor 3D Performance'
+dependencies {
+ compile project(':ardor3d-savable')
+ compile project(':ardor3d-math')
+ compile project(':ardor3d-core')
+ compile group: 'javax.vecmath', name: 'vecmath', version:'1.5.2'
+}
diff --git a/settings.gradle b/settings.gradle
index 5838923..82cea1a 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -15,6 +15,7 @@ include ':ardor3d-animation'
include ':ardor3d-ui'
include ':ardor3d-terrain'
include ':ardor3d-examples'
+include ':ardor3d-performance'
include ':distribution'
project(':ardor3d-savable').projectDir = "$rootDir/ardor3d-savable" as File
@@ -33,4 +34,5 @@ project(':ardor3d-animation').projectDir = "$rootDir/ardor3d-animation" as File
project(':ardor3d-ui').projectDir = "$rootDir/ardor3d-ui" as File
project(':ardor3d-terrain').projectDir = "$rootDir/ardor3d-terrain" as File
project(':ardor3d-examples').projectDir = "$rootDir/ardor3d-examples" as File
+project(':ardor3d-performance').projectDir = "$rootDir/ardor3d-performance" as File
project(':distribution').projectDir = "$rootDir/ardor3d-distribution" as File \ No newline at end of file