Files
allwpilib/shared/imgui.gradle
Tyler Veness 97021f074a [build] Upgrade imgui and implot (#5668)
Upgrade implot to fix deprecation warning for sprintf(), and upgrade
imgui docking branch to match.
2023-09-19 23:38:17 -07:00

14 lines
442 B
Groovy

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