Skip to content

Commit

Permalink
Add //systems/trajectory_optimization rollup library
Browse files Browse the repository at this point in the history
  • Loading branch information
jwnimmer-tri committed May 1, 2018
1 parent c9f6066 commit 98c7614
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion systems/trajectory_optimization/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
# -*- python -*-

load("//tools:drake.bzl", "drake_cc_googletest", "drake_cc_library")
load(
"@drake//tools/skylark:drake_cc.bzl",
"drake_cc_googletest",
"drake_cc_library",
"drake_cc_package_library",
)
load("//tools/lint:lint.bzl", "add_lint_tests")

package(default_visibility = ["//visibility:public"])

drake_cc_package_library(
name = "trajectory_optimization",
deps = [
":direct_collocation",
":direct_transcription",
":generalized_constraint_force_evaluator",
":joint_limit_constraint_force_evaluator",
":multiple_shooting",
":position_constraint_force_evaluator",
],
)

drake_cc_library(
name = "generalized_constraint_force_evaluator",
srcs = ["generalized_constraint_force_evaluator.cc"],
Expand Down

0 comments on commit 98c7614

Please sign in to comment.