math_opt: build fixup

This commit is contained in:
Corentin Le Molgat
2023-05-31 18:19:19 +02:00
parent 92fc499bf3
commit 0e6505a470
3 changed files with 12 additions and 0 deletions

View File

@@ -90,6 +90,7 @@ proto_library(
"//ortools/gscip:gscip_proto",
"//ortools/math_opt/solvers:glpk_proto",
"//ortools/math_opt/solvers:gurobi_proto",
"//ortools/math_opt/solvers:highs_proto",
"//ortools/sat:sat_parameters_proto",
"@com_google_protobuf//:duration_proto",
],

View File

@@ -291,6 +291,7 @@ cc_library(
"@com_google_absl//absl/base:core_headers",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/synchronization",
"@com_google_protobuf//:protobuf",
],
)

View File

@@ -341,3 +341,13 @@ proto_library(
name = "glpk_proto",
srcs = ["glpk.proto"],
)
cc_proto_library(
name = "highs_cc_proto",
deps = [":highs_proto"],
)
proto_library(
name = "highs_proto",
srcs = ["highs.proto"],
)