questzdoom/build.gradle
Simon 7c0534ec41 Gradle changes to support building without dependency on the Meta OpenXR SDK package
the AndroidPrebuilt libopenxr_loader.so is the Android library, rather than an XR vendor specific library, provided solely for linking against.
2023-02-06 21:53:12 +00:00

22 lines
267 B
Groovy

buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.0'
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}