mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-30 02:31:44 +00:00
Rename the following folders: hal/lib/Athena -> hal/lib/athena hal/lib/Desktop -> hal/lib/sim hal/lib/Shared -> hal/lib/shared wpilibc/Athena -> wpilibc/athena wpilibc/simulation -> wpilibc/sim Windows users may need to run gradlew clean after updating.
30 lines
576 B
Groovy
30 lines
576 B
Groovy
plugins {
|
|
id 'org.ysb33r.doxygen' version '0.2'
|
|
id 'cpp'
|
|
id 'maven-publish'
|
|
}
|
|
|
|
evaluationDependsOn(':hal')
|
|
|
|
ext.shared = 'shared'
|
|
ext.athena = 'athena'
|
|
ext.simulation = 'sim'
|
|
|
|
// Attempts to execute the doxygen command. If there is no exception, doxygen exists, so return true. If there's
|
|
// an IOException, it doesn't exist, so return false
|
|
ext.checkDoxygen = {
|
|
try {
|
|
'doxygen'.execute()
|
|
true
|
|
} catch (IOException e) {
|
|
false
|
|
}
|
|
}
|
|
|
|
apply from: 'athena.gradle'
|
|
|
|
if (hasProperty('makeSim')){
|
|
apply from: 'simulation.gradle'
|
|
}
|
|
|