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