[upstream_utils] Add imgui and friends (#6822)

This commit is contained in:
PJ Reiniger
2024-07-21 01:11:54 -04:00
committed by GitHub
parent 8548d83b03
commit 6922b9dd5e
157 changed files with 149208 additions and 165 deletions

View File

@@ -16,7 +16,6 @@ ext {
}
apply from: "${rootDir}/shared/config.gradle"
apply from: "${rootDir}/shared/imgui.gradle"
nativeUtils.exportsConfigs {
wpigui {
@@ -49,7 +48,7 @@ model {
}
}
binaries.all {
nativeUtils.useRequiredLibrary(it, 'imgui')
lib project: ':thirdparty:imgui_suite', library: 'imgui', linkage: 'static'
if (it.targetPlatform.name == nativeUtils.wpi.platforms.roborio) {
it.buildable = false
return
@@ -113,7 +112,7 @@ model {
}
binaries.all {
lib library: 'wpigui'
nativeUtils.useRequiredLibrary(it, 'imgui')
lib project: ':thirdparty:imgui_suite', library: 'imgui', linkage: 'static'
}
}
}