You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Conception/drake-master/examples/zmp/BUILD.bazel

18 lines
339 B

load(
"@drake//tools/skylark:drake_cc.bzl",
"drake_cc_binary",
)
load("//tools/lint:lint.bzl", "add_lint_tests")
drake_cc_binary(
name = "zmp_example",
testonly = 1,
srcs = ["zmp_example.cc"],
deps = [
"//common/proto:call_python",
"//systems/controllers:zmp_test_util",
],
)
add_lint_tests()