blob: 3f4fc4cc9b043f75b76c5119caab9d357900b2ba [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 = ['.'],
Brian Silvermanb200c172017-01-02 17:35:35 -08008 hdrs = glob(['Eigen/*'], exclude=[
Brian Silvermanc058dbf2015-09-26 17:39:15 -04009 # 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',
Austin Schuhed006852017-02-18 22:32:35 -080017 ]) + ['unsupported/Eigen/MatrixFunctions'] +
18 glob(['unsupported/Eigen/src/MatrixFunctions/*.h']),
Brian Silvermanc058dbf2015-09-26 17:39:15 -040019)