axmol/tests/cpp-tests/proj.android/settings.gradle

21 lines
683 B
Groovy
Raw Normal View History

import java.nio.file.Paths
import java.nio.file.Files
def ENGINE_ROOT=Paths.get("${System.env.AX_ROOT}")
if(Files.exists(ENGINE_ROOT)) {
println("Determine ENGINE_JAVA_LIBPATH with system env var AX_ROOT")
ENGINE_ROOT = ENGINE_ROOT.toAbsolutePath().toString()
}
else {
println("Determine ENGINE_JAVA_LIBPATH with relative to settingsDir")
ENGINE_ROOT = settingsDir.getPath() + "/../../.."
}
2022-10-01 16:24:52 +08:00
def ENGINE_JAVA_LIBPATH = ENGINE_ROOT + '/core/platform/android/libaxmol';
2022-10-01 16:24:52 +08:00
include ':libaxmol'
project(':libaxmol').projectDir = new File(ENGINE_JAVA_LIBPATH)
2019-11-23 20:27:39 +08:00
include ':CppTests'
project(':CppTests').projectDir = new File(settingsDir, 'app')
rootProject.name = "cpp-tests"