Brian Silverman | 890a32a | 2018-03-11 15:41:56 -0700 | [diff] [blame] | 1 | // Name of the library used for changing zip outputs and jar name |
| 2 | // Note will not change native library names |
| 3 | ext.libraryName = "CTRE_Phoenix" |
| 4 | |
| 5 | // Set to true to embed included java libraries in the output jar |
| 6 | ext.embedJavaLibraries = false |
| 7 | |
| 8 | // Set to true to combine the driver and cpp static libraries for wpilibc use |
| 9 | ext.combineStaticLibs = false |
| 10 | |
| 11 | // Set to true to include the java sources in the user zip |
| 12 | ext.includeJavaSources = true |
| 13 | |
| 14 | // Set to true to include the java javadocs in the user zip |
| 15 | ext.includeJavaJavadoc = true |
| 16 | |
| 17 | // Set to true to include the cpp sources in the user zip (does not include the driver sources) |
| 18 | ext.includeCppSources = false |
| 19 | |
| 20 | // Set to true to include the driver sources in the user zip |
| 21 | ext.includeDriverSources = false |
| 22 | |
| 23 | // Set to true to automatically copy to eclipse on build |
| 24 | ext.setCopyToEclipse = true |