mirror of https://github.com/axmolengine/axmol.git
21 lines
696 B
Groovy
21 lines
696 B
Groovy
import java.nio.file.Paths
|
|
import java.nio.file.Files
|
|
|
|
def ENGINE_ROOT=Paths.get("${System.env.AXIS_ROOT}")
|
|
if(Files.exists(ENGINE_ROOT)) {
|
|
println("Determine ENGINE_JAVA_LIBPATH with system env var AXIS_ROOT")
|
|
ENGINE_ROOT = ENGINE_ROOT.toAbsolutePath().toString()
|
|
}
|
|
else {
|
|
println("Determine ENGINE_JAVA_LIBPATH with relative to settingsDir")
|
|
ENGINE_ROOT = settingsDir.getPath() + "/../../.."
|
|
}
|
|
|
|
def ENGINE_JAVA_LIBPATH = ENGINE_ROOT + '/core/platform/android/libcocos2dx';
|
|
|
|
include ':libcocos2dx'
|
|
project(':libcocos2dx').projectDir = new File(ENGINE_JAVA_LIBPATH)
|
|
include ':CppTests'
|
|
project(':CppTests').projectDir = new File(settingsDir, 'app')
|
|
rootProject.name = "cpp-tests"
|