mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-20 09:16:01 +08:00
15 lines
482 B
Groovy
15 lines
482 B
Groovy
rootProject.name = 'spine-libgdx-root'
|
|
|
|
// Conditionally include libgdx if it exists
|
|
def libgdxPath = file("../../libgdx")
|
|
if (libgdxPath.exists() && libgdxPath.isDirectory()) {
|
|
println "Found libgdx at ${libgdxPath.absolutePath}, including as composite build"
|
|
includeBuild "../../libgdx"
|
|
} else {
|
|
println "libgdx not found at ${libgdxPath.absolutePath}, using Maven dependencies"
|
|
}
|
|
|
|
include ":spine-libgdx"
|
|
include ":spine-libgdx-tests"
|
|
include ":spine-skeletonviewer"
|