blob: 02f259dc0135495dc7a5f66755f1b7d9a9b76026 [file] [log] [blame]
licenses(["notice"])
cc_library(
name = "eigen",
srcs = glob(["Eigen/src/**/*.h"]),
hdrs = glob(
["Eigen/*"],
exclude = [
# Stuff that we don't have the dependencies for.
"Eigen/CholmodSupport",
"Eigen/MetisSupport",
"Eigen/PaStiXSupport",
"Eigen/PardisoSupport",
"Eigen/SPQRSupport",
"Eigen/SuperLUSupport",
"Eigen/UmfPackSupport",
],
) + ["unsupported/Eigen/MatrixFunctions"] + glob([
"unsupported/Eigen/src/MatrixFunctions/*.h",
]),
includes = ["."],
visibility = ["//visibility:public"],
)