blob: 0f5dfac12cd3537db4d83cd009d2cb96441f228f [file] [log] [blame]
Brian Silvermanf2639282018-08-04 16:46:11 -07001licenses(["notice"]) # boost
2
3cc_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)