-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathMODULE.bazel
More file actions
32 lines (28 loc) · 1.06 KB
/
MODULE.bazel
File metadata and controls
32 lines (28 loc) · 1.06 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
module(
name = "gz-common",
compatibility_level = 6,
)
bazel_dep(name = "bazel_skylib", version = "1.7.1")
bazel_dep(name = "assimp", version = "5.4.3.bcr.3")
bazel_dep(name = "buildifier_prebuilt", version = "8.2.1")
bazel_dep(name = "cdt", version = "1.4.0")
bazel_dep(name = "googletest", version = "1.15.2")
bazel_dep(name = "rules_cc", version = "0.2.14")
bazel_dep(name = "rules_license", version = "1.0.0")
bazel_dep(name = "spdlog", version = "1.15.3")
bazel_dep(name = "tinyxml2", version = "10.0.0")
bazel_dep(name = "libuuid", version = "2.39.3.bcr.1")
# Gazebo Dependencies
bazel_dep(name = "rules_gazebo", version = "0.0.6")
bazel_dep(name = "gz-utils", version = "4.0.0")
bazel_dep(name = "gz-math", version = "9.0.0")
archive_override(
module_name = "gz-utils",
strip_prefix = "gz-utils-main",
urls = ["https://github.com/gazebosim/gz-utils/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"],
)