Files
allwpilib/wpilibc/build.gradle
Peter Mitrano e71f454b9d Renamed folders for consistency, using sim/athena/shared schema (#27)
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.
2016-05-22 14:55:51 -07:00

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'
}