Files
allwpilib/shared/imgui.gradle
Thad House b8cdf97621 [build] Prepare for Windows arm64 builds (#5390)
Builds aren't actually enabled yet due to a bug in Gradle.
2023-07-24 22:46:25 -07:00

14 lines
442 B
Groovy

nativeUtils {
nativeDependencyContainer {
imgui(getNativeDependencyTypeClass('WPIStaticMavenDependency')) {
groupId = "edu.wpi.first.thirdparty.frc2023"
artifactId = "imgui"
headerClassifier = "headers"
sourceClassifier = "sources"
ext = "zip"
version = '1.89.1-2'
targetPlatforms.addAll(nativeUtils.wpi.platforms.allPlatforms)
}
}
}