forked from yarny/gbdt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
46 lines (39 loc) · 859 Bytes
/
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
bind(
name = "cppformat-lib",
actual = "@cppformat//:format"
)
new_git_repository(
name = "cppformat",
remote = "https://github.com/cppformat/cppformat.git",
tag = "1.1.0",
build_file = "cppformat.BUILD",
)
bind(
name = "re2-lib",
actual = "@re2//:re2"
)
git_repository(
name = "re2",
remote = "https://github.com/google/re2.git",
tag = "2015-11-01",
)
new_git_repository(
name = "googletest",
remote = "https://github.com/google/googletest.git",
tag = "release-1.8.0",
build_file = "googletest.BUILD",
)
bind(
name = "gtest_main",
actual = "@googletest//:gtest_main",
)
bind(
name = "pybind11-lib",
actual = "@pybind11//:pybind11"
)
new_git_repository(
name = "pybind11",
remote = "https://github.com/pybind/pybind11.git",
tag = "v1.8.1",
build_file = "pybind11.BUILD",
)