Add EJML dependency to wpiutil (#1769)

Add EJML as the Java library for linear algebra for use in wpilib. This is equivalent to Eigen for C++.

The EJML dependency is downloaded in cmake and pulled in via maven in the gradle build.
This commit is contained in:
Redrield
2019-08-03 17:24:14 -04:00
committed by Peter Johnson
parent 3b12276bc3
commit c98ca7310f
4 changed files with 39 additions and 3 deletions

View File

@@ -97,6 +97,7 @@ ext {
apply from: "${rootDir}/shared/opencv.gradle"
task generateJavaDocs(type: Javadoc) {
classpath += project(":wpiutil").sourceSets.main.compileClasspath
options.links("https://docs.oracle.com/en/java/javase/11/docs/api/")
options.addStringOption "tag", "pre:a:Pre-Condition"
options.addStringOption('Xdoclint:accessibility,html,missing,reference,syntax')