Brian Silverman | c058dbf | 2015-09-26 17:39:15 -0400 | [diff] [blame] | 1 | licenses(['notice']) |
2 | |||||
3 | cc_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 | ) |