Files
ortools-clone/ortools/util/python/BUILD.bazel
2022-03-30 13:12:32 +02:00

13 lines
303 B
Python

# Python wrapper for model_builder.
load("@pybind11_bazel//:build_defs.bzl", "pybind_extension")
pybind_extension(
name = "sorted_interval_list",
srcs = ["sorted_interval_list.cc"],
visibility = ["//visibility:public"],
deps = [
"//ortools/util:sorted_interval_list",
],
)