aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/ortools.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/ortools.BUILD')
-rw-r--r--third_party/ortools.BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/third_party/ortools.BUILD b/third_party/ortools.BUILD
new file mode 100644
index 0000000000..61191e3d27
--- /dev/null
+++ b/third_party/ortools.BUILD
@@ -0,0 +1,13 @@
+# Google's software suite for combinatorial optimization
+
+licenses(["notice"]) # Apache2 license
+
+exports_files(["LICENSE-2.0.txt"])
+
+native.cc_library(
+ name = "linear_solver_glop",
+ deps = [
+ "@ortools_archive//linear_solver:linear_solver_glop",
+ ],
+ visibility = ["//visibility:public"],
+)