diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-07-30 00:18:28 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-07-30 00:18:28 +0200 |
commit | 4e3fd3eac50d3685a7771b570741f2922c4e3693 (patch) | |
tree | 4417153cd454a1f09a8fbf7c3329819b50734c40 /BUILD.bazel |
Initial commit
Diffstat (limited to 'BUILD.bazel')
-rw-r--r-- | BUILD.bazel | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel new file mode 100644 index 0000000..b16b286 --- /dev/null +++ b/BUILD.bazel @@ -0,0 +1,16 @@ +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",
+ "@bazel_tools//tools/cpp:clang-cl",
+ ],
+)
+
|