diff options
Diffstat (limited to 'BUILD.bazel')
-rw-r--r-- | BUILD.bazel | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/BUILD.bazel b/BUILD.bazel index d861b66..c5a2f79 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -1,18 +1,18 @@ -load("@hedron_compile_commands//:refresh_compile_commands.bzl", "refresh_compile_commands")
-
-refresh_compile_commands(
- name = "refresh_clangd",
- targets = "//...",
-)
-
-platform(
- name = "x64_windows-clang-cl",
- constraint_values = [
- "@platforms//cpu:x86_64",
- "@platforms//os:windows",
- # @Todo(bazel) Bit weird to use a private thing.
- # We used to use @bazel_tools//tools/cpp:clang-cl but it's deprecated
- # in favor of... this?...
- "@rules_cc//cc/private/toolchain:clang-cl",
- ],
-)
+load("@hedron_compile_commands//:refresh_compile_commands.bzl", "refresh_compile_commands") + +refresh_compile_commands( + name = "refresh_clangd", + targets = "//...", +) + +platform( + name = "x64_windows-clang-cl", + constraint_values = [ + "@platforms//cpu:x86_64", + "@platforms//os:windows", + # @Todo(bazel) Bit weird to use a private thing. + # We used to use @bazel_tools//tools/cpp:clang-cl but it's deprecated + # in favor of... this?... + "@rules_cc//cc/private/toolchain:clang-cl", + ], +) |