We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9fc802 commit 7ff1cdaCopy full SHA for 7ff1cda
c/BUILD.bazel
@@ -6,7 +6,8 @@ SBP_INCLUDE = glob(["include/**/*.h"])
6
SBP_INCLUDE_INTERNAL = glob(["src/**/*.h"])
7
8
refresh_compile_commands(
9
- name = "refresh_compile_commands",
+ name = "gen_compile_commands",
10
+ visibility = ["//visibility:public"],
11
)
12
13
swift_cc_library(
c/Makefile
@@ -12,3 +12,6 @@ do-code-coverage:
do-generate-coverage-report: do-code-coverage
14
genhtml bazel-out/_coverage/_coverage_report.dat -o coverage
15
+
16
+gen-compile-commands:
17
+ bazel run //c:gen_compile_commands
0 commit comments