forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD.bazel
47 lines (38 loc) · 912 Bytes
/
BUILD.bazel
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- python -*-
# This file contains rules for Bazel; see drake/doc/bazel.rst.
# This file is named BUILD.bazel instead of the more typical BUILD, so that on
# OSX it won't conflict with a build artifacts directory named "build".
load("//tools:install.bzl", "install")
package(
default_visibility = ["//visibility:public"],
)
exports_files([
"CPPLINT.cfg",
".clang-format",
])
alias(
name="protoc",
actual="@protobuf//:protoc",
)
alias(
name="protobuf",
actual="@protobuf//:protobuf",
)
alias(
name="protobuf_python",
actual="@protobuf//:protobuf_python",
)
exports_files(["LICENSE.TXT"])
install(
name = "install",
deps = [
"@bullet//:install",
"@eigen//:install",
"@ipopt//:install",
"@lcm//:install",
"@nlopt//:install",
"@pybind11//:install",
"//drake:install",
"//tools:install",
],
)