Skip to content

Commit

Permalink
Change properties to combine static libs, include sources.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterJohnson committed Jan 22, 2017
1 parent c51aa86 commit bf8ec7c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions properties.gradle
Expand Up @@ -6,16 +6,16 @@ ext.libraryName = "sweep"
ext.embedJavaLibraries = true

// Set to true to combine the driver and cpp static libraries for wpilibc use
ext.combineStaticLibs = false
ext.combineStaticLibs = true

// Set to true to include the java sources in the user zip
ext.includeJavaSources = false
ext.includeJavaSources = true

// Set to true to include the java javadocs in the user zip
ext.includeJavaJavadoc = false
ext.includeJavaJavadoc = true

// Set to true to include the cpp sources in the user zip (does not include the driver sources)
ext.includeCppSources = false
ext.includeCppSources = true

// Set to true to include the driver sources in the user zip
ext.includeDriverSources = false
Expand Down

0 comments on commit bf8ec7c

Please sign in to comment.