-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMODULE.bazel
More file actions
30 lines (25 loc) · 870 Bytes
/
Copy pathMODULE.bazel
File metadata and controls
30 lines (25 loc) · 870 Bytes
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
# Copyright 2025 Jeff Hodsdon
# SPDX-License-Identifier: Apache-2.0
module(
name = "rules_swift_resources",
version = "0.0.0",
bazel_compatibility = [">=7.0.0"],
)
bazel_dep(name = "apple_support", version = "2.0.0")
bazel_dep(name = "bazel_lib", version = "3.0.0")
bazel_dep(name = "bazel_skylib", version = "1.9.0")
bazel_dep(name = "platforms", version = "1.0.0")
bazel_dep(name = "rules_cc", version = "0.2.14")
bazel_dep(name = "rules_swift", version = "3.4.1")
apple_cc_configure = use_extension(
"@apple_support//crosstool:setup.bzl",
"apple_cc_configure_extension",
)
use_repo(
apple_cc_configure,
"local_config_apple_cc",
"local_config_apple_cc_toolchains",
)
register_toolchains("@local_config_apple_cc_toolchains//:all")
# Dev dependencies
bazel_dep(name = "buildifier_prebuilt", version = "8.0.3", dev_dependency = True)