프로젝트 초기화

This commit is contained in:
2026-03-08 00:30:40 +09:00
parent 30b52b52f9
commit 2b865725ca
136 changed files with 3490 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 ':TowerDefense'
project(':TowerDefense').projectDir = new File(settingsDir, 'app')
rootProject.name = "TowerDefense"