-
Notifications
You must be signed in to change notification settings - Fork 1
/
WORKSPACE
42 lines (37 loc) · 1.11 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
new_http_archive(
name = "gtest",
url = "https://googletest.googlecode.com/files/gtest-1.7.0.zip",
sha256 = "247ca18dd83f53deb1328be17e4b1be31514cedfc1e3424f672bf11fd7e0d60d",
build_file = "gtest.BUILD",
)
# Frozen copy of wpilib source
new_http_archive(
name = 'wpilib',
build_file = 'wpilib.BUILD',
sha256 = '0d4471ff34c29963ad7ffb0a9bc1db9566159ffadb2f7d29997ce5ac255e727d',
url = 'https://www.dropbox.com/s/agexr7gt2o838eo/wpilib.zip?dl=0&raw=1'
)
new_http_archive(
name = 'eigen',
build_file = 'eigen.BUILD',
sha256 = 'e37ad303cddf324a16b49e43edfb00129972442c0d8a2d866605bc29de94571a',
url = 'https://bitbucket.org/eigen/eigen/get/4111270ba6e1.zip'
)
new_git_repository(
name = 'cddlib',
build_file = 'cddlib.BUILD',
remote = 'https://github.com/mcmtroffaes/cddlib',
commit = '370919d'
)
new_git_repository(
name = 'json',
build_file = 'json.BUILD',
remote = 'https://github.com/nlohmann/json',
commit = '53879f9'
)
new_http_archive(
name = 'opencv',
build_file = 'opencv.BUILD',
sha256 = '',
url = 'https://www.dropbox.com/s/t00zz2wtqmabum9/opencv.zip?dl=0&raw=1'
)