fix checks for SDK and native builds

This commit is contained in:
Normen Hansen 2014-03-23 21:22:38 +01:00
parent 7b0c31afad
commit 54c6aa5afc
2 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ task dist (dependsOn: ['build', ':jme3-jogl:jar', ':jme3-bullet:jar']){
into '../dist/opt/native-bullet' into '../dist/opt/native-bullet'
rename {project(':jme3-bullet').name+".jar"} rename {project(':jme3-bullet').name+".jar"}
} }
if(buildNativeProjects){ if(buildNativeProjects == "true"){
copy { copy {
from project(':jme3-bullet-native').jar.archivePath from project(':jme3-bullet-native').jar.archivePath
into '../dist/opt/native-bullet' into '../dist/opt/native-bullet'

View File

@ -24,7 +24,7 @@ include 'jme3-android'
//native builds //native builds
include 'jme3-bullet' //java include 'jme3-bullet' //java
if(buildNativeProjects){ if(buildNativeProjects == "true"){
include 'jme3-bullet-native' //cpp include 'jme3-bullet-native' //cpp
include 'jme3-android-native' //cpp include 'jme3-android-native' //cpp
} }
@ -34,6 +34,6 @@ include 'jme3-testdata'
// Example projects // Example projects
include 'jme3-examples' include 'jme3-examples'
if(buildSdkProject){ if(buildSdkProject == "true"){
include 'sdk' include 'sdk'
} }