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 /MODULE.bazel |
Initial commit
Diffstat (limited to 'MODULE.bazel')
-rw-r--r-- | MODULE.bazel | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/MODULE.bazel b/MODULE.bazel new file mode 100644 index 0000000..93439c6 --- /dev/null +++ b/MODULE.bazel @@ -0,0 +1,17 @@ +module(name = "asl")
+
+bazel_dep(name = "hedron_compile_commands", dev_dependency = True)
+git_override(
+ module_name = "hedron_compile_commands",
+ remote = "https://github.com/hedronvision/bazel-compile-commands-extractor.git",
+ commit = "a14ad3a64e7bf398ab48105aaa0348e032ac87f8",
+)
+
+register_execution_platforms(
+ "//:x64_windows-clang-cl"
+)
+
+register_toolchains(
+ "@@local_config_cc//:cc-toolchain-x64_windows-clang-cl",
+)
+
|