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 c7745b0 commit dcb2ae1Copy full SHA for dcb2ae1
llvm/utils/gn/secondary/clang-tools-extra/clang-doc/BUILD.gn
@@ -2,6 +2,7 @@ static_library("clang-doc") {
2
output_name = "clangDoc"
3
configs += [ "//llvm/utils/gn/build:clang_code" ]
4
deps = [
5
+ "support",
6
"//clang/lib/AST",
7
"//clang/lib/ASTMatchers",
8
"//clang/lib/Analysis",
llvm/utils/gn/secondary/clang-tools-extra/clang-doc/support/BUILD.gn
@@ -0,0 +1,6 @@
1
+static_library("support") {
+ output_name = "clangDocSupport"
+ configs += [ "//llvm/utils/gn/build:clang_code" ]
+ deps = [ "//llvm/lib/Support" ]
+ sources = [ "File.cpp" ]
+}
0 commit comments