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 c530bf2 commit d4898b5Copy full SHA for d4898b5
llvm/utils/gn/secondary/lldb/source/Plugins/Language/CPlusPlus/BUILD.gn
@@ -1,10 +1,23 @@
1
+import("//lldb/utils/TableGen/lldb_tablegen.gni")
2
+
3
+lldb_tablegen("LanguageCPlusPlusProperties") {
4
+ args = [ "-gen-lldb-property-defs" ]
5
+}
6
7
+lldb_tablegen("LanguageCPlusPlusPropertiesEnum") {
8
+ args = [ "-gen-lldb-property-enum-defs" ]
9
+ td_file = "LanguageCPlusPlusProperties.td"
10
11
12
static_library("CPlusPlus") {
13
output_name = "lldbPluginCPlusPlusLanguage"
14
configs += [
15
"//llvm/utils/gn/build:clang_code",
16
"//llvm/utils/gn/build:lldb_code",
17
]
18
deps = [
19
+ ":LanguageCPlusPlusProperties",
20
+ ":LanguageCPlusPlusPropertiesEnum",
21
"//lldb/source/Core",
22
"//lldb/source/DataFormatters",
23
"//lldb/source/Host",
0 commit comments