forked from gazebosim/gz-rendering
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
46 lines (40 loc) · 1.52 KB
/
Copy pathMODULE.bazel
File metadata and controls
46 lines (40 loc) · 1.52 KB
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
module(
name = "gz-rendering",
compatibility_level = 9,
)
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "buildifier_prebuilt", version = "8.2.1")
bazel_dep(name = "egl-registry", version = "0.0.0-20250527")
bazel_dep(name = "googletest", version = "1.15.2")
bazel_dep(name = "ogre-next", version = "2.3.3.bcr.5")
bazel_dep(name = "platforms", version = "1.1.0")
bazel_dep(name = "rules_cc", version = "0.2.0")
bazel_dep(name = "rules_license", version = "1.0.0")
# Gazebo Dependencies
bazel_dep(name = "rules_gazebo", version = "0.0.6")
bazel_dep(name = "gz-common", version = "7.0.0")
bazel_dep(name = "gz-math", version = "9.0.0")
bazel_dep(name = "gz-plugin", version = "4.0.0")
bazel_dep(name = "gz-utils", version = "4.0.0")
# Override Gz deps to be pulled from the `main` branches so that CI uses deps
# from HEAD on `main`.
archive_override(
module_name = "gz-common",
strip_prefix = "gz-common-main",
urls = ["https://github.com/gazebosim/gz-common/archive/refs/heads/main.tar.gz"],
)
archive_override(
module_name = "gz-math",
strip_prefix = "gz-math-main",
urls = ["https://github.com/gazebosim/gz-math/archive/refs/heads/main.tar.gz"],
)
archive_override(
module_name = "gz-plugin",
strip_prefix = "gz-plugin-main",
urls = ["https://github.com/gazebosim/gz-plugin/archive/refs/heads/main.tar.gz"],
)
archive_override(
module_name = "gz-utils",
strip_prefix = "gz-utils-main",
urls = ["https://github.com/gazebosim/gz-utils/archive/refs/heads/main.tar.gz"],
)