Brian Silverman | f263928 | 2018-08-04 16:46:11 -0700 | [diff] [blame^] | 1 | licenses(["notice"]) # boost |
2 | |||||
3 | cc_library( | ||||
4 | name = "odeint", | ||||
5 | hdrs = glob(["include/**"]), | ||||
6 | includes = ["include"], | ||||
7 | visibility = ["//visibility:public"], | ||||
8 | deps = [ | ||||
9 | "//third_party/boostorg/assert", | ||||
10 | "//third_party/boostorg/static_assert", | ||||
11 | "//third_party/boostorg/throw_exception", | ||||
12 | "//third_party/boostorg/type_traits", | ||||
13 | ], | ||||
14 | ) |