Files
ortools-clone/ortools/graph/samples/code_samples.bzl
2020-08-28 17:52:08 +02:00

15 lines
357 B
Python

def code_sample_cc(sample):
native.cc_binary(
name = sample,
srcs = [sample + ".cc"],
deps = [
"//ortools/base",
"//ortools/graph:min_cost_flow",
"//ortools/graph:max_flow",
"//ortools/graph:shortestpaths",
"//ortools/graph:ebert_graph",
"//ortools/graph:linear_assignment",
],
)