blob: 02f259dc0135495dc7a5f66755f1b7d9a9b76026 [file] [log] [blame]
Brian Silverman7a7c24d2018-09-01 17:49:09 -07001licenses(["notice"])
Brian Silvermanc058dbf2015-09-26 17:39:15 -04002
3cc_library(
Brian Silverman7a7c24d2018-09-01 17:49:09 -07004 name = "eigen",
5 srcs = glob(["Eigen/src/**/*.h"]),
6 hdrs = glob(
7 ["Eigen/*"],
8 exclude = [
9 # Stuff that we don't have the dependencies for.
10 "Eigen/CholmodSupport",
11 "Eigen/MetisSupport",
12 "Eigen/PaStiXSupport",
13 "Eigen/PardisoSupport",
14 "Eigen/SPQRSupport",
15 "Eigen/SuperLUSupport",
16 "Eigen/UmfPackSupport",
17 ],
18 ) + ["unsupported/Eigen/MatrixFunctions"] + glob([
19 "unsupported/Eigen/src/MatrixFunctions/*.h",
20 ]),
Brian Silverman7a7c24d2018-09-01 17:49:09 -070021 includes = ["."],
22 visibility = ["//visibility:public"],
Brian Silvermanc058dbf2015-09-26 17:39:15 -040023)