blob: fd6f88908270c5752db1ada584a6cf75704f93ff [file] [log] [blame]
Brian Silvermanc058dbf2015-09-26 17:39:15 -04001licenses(['notice'])
2
3cc_library(
4 name = 'eigen',
5 visibility = ['//visibility:public'],
6 srcs = glob(['Eigen/src/**/*.h']),
7 includes = ['.'],
8 hdrs = glob(['Eigen/*'], [
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)