프로젝트 추가

This commit is contained in:
2026-02-21 21:49:54 +09:00
parent 65ab25c289
commit 2049624841
138 changed files with 3691 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import java.nio.file.Paths
def folder = new File("${settingsDir}/../axmol")
if (folder.exists()) {
System.setProperty("AX_ROOT", folder.path)
} else {
System.setProperty("AX_ROOT", "${System.env.AX_ROOT}")
}
include ':libaxmol'
project(':libaxmol').projectDir = new File(Paths.get("${System.properties.AX_ROOT}/core/platform/android/libaxmol").toUri())
include ':AxmolTestbed'
project(':AxmolTestbed').projectDir = new File(settingsDir, 'app')
rootProject.name = "AxmolTestbed"