forked from RobotLocomotion/drake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
48 lines (39 loc) · 1.29 KB
/
WORKSPACE
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
48
# -*- python -*-
# This file marks a workspace root for the Bazel build system. see
# http://bazel.io/ .
workspace(name = "drake")
load("//tools/third_party/kythe/tools/build_rules/config:pkg_config.bzl", "pkg_config_package")
new_http_archive(
name = "gtest",
url = "https://github.com/google/googletest/archive/release-1.7.0.zip",
sha256 = "b58cb7547a28b2c718d1e38aee18a3659c9e3ff52440297e965f5edffe34b6d0",
build_file = "tools/gtest.BUILD",
strip_prefix = "googletest-release-1.7.0",
)
git_repository(
name = "gflags",
commit = "a69b2544d613b4bee404988710503720c487119a",
remote = "https://github.com/gflags/gflags.git"
)
new_git_repository(
name = "eigen",
remote = "https://github.com/RobotLocomotion/eigen-mirror.git",
commit = "1b7acef29a4c53b5867e5d9da7e97bde436219f9",
build_file = "tools/eigen.BUILD",
)
new_git_repository(
name = "spdlog",
remote = "https://github.com/gabime/spdlog.git",
commit = "43a4048b92ef5b7eff6dc637a621c7da3a41d194",
build_file = "tools/spdlog.BUILD",
)
new_git_repository(
name = "lcm",
remote = "https://github.com/lcm-proj/lcm.git",
commit = "a8cda6a64b31739a781b67408c63bec08b15ab32",
build_file = "tools/lcm.BUILD",
)
pkg_config_package(
name = "glib",
modname = "glib-2.0",
)