mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
29 lines
651 B
Groovy
29 lines
651 B
Groovy
description = "A simulation shared object that simply prints robot behaviors"
|
|
|
|
apply plugin: 'edu.wpi.first.NativeUtils'
|
|
apply plugin: 'cpp'
|
|
|
|
if (!project.hasProperty('onlyAthena')) {
|
|
ext.skipAthena = true
|
|
|
|
apply from: "../../config.gradle"
|
|
|
|
|
|
model {
|
|
components {
|
|
halsim_print(NativeLibrarySpec)
|
|
}
|
|
|
|
binaries {
|
|
all {
|
|
project(':hal').addHalCompilerArguments(it)
|
|
project(':hal').addHalToLinker(it)
|
|
}
|
|
withType(StaticLibraryBinarySpec) {
|
|
it.buildable = false
|
|
}
|
|
}
|
|
}
|
|
apply from: 'publish.gradle'
|
|
}
|