Skip to content

Commit 59caa1d

Browse files
labathJaddyen
authored andcommitted
[lldb] Add BRIEF_DOCS for cmake properties defined in llvm#144543
It seems some cmake versions require it.
1 parent 7626810 commit 59caa1d

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

lldb/cmake/modules/LLDBLayeringCheck.cmake

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
define_property(DIRECTORY PROPERTY LLDB_PLUGIN_KIND)
2-
define_property(TARGET PROPERTY LLDB_PLUGIN_KIND INHERITED)
1+
define_property(DIRECTORY PROPERTY LLDB_PLUGIN_KIND
2+
BRIEF_DOCS "LLDB plugin kind (Process, SymbolFile, etc.")
3+
define_property(TARGET PROPERTY LLDB_PLUGIN_KIND INHERITED
4+
BRIEF_DOCS "LLDB plugin kind (Process, SymbolFile, etc.")
35

4-
define_property(DIRECTORY PROPERTY LLDB_ACCEPTABLE_PLUGIN_DEPENDENCIES)
5-
define_property(TARGET PROPERTY LLDB_ACCEPTABLE_PLUGIN_DEPENDENCIES INHERITED)
6+
define_property(DIRECTORY PROPERTY LLDB_ACCEPTABLE_PLUGIN_DEPENDENCIES
7+
BRIEF_DOCS "LLDB plugin kinds which the plugin can depend on")
8+
define_property(TARGET PROPERTY LLDB_ACCEPTABLE_PLUGIN_DEPENDENCIES INHERITED
9+
BRIEF_DOCS "LLDB plugin kinds which the plugin can depend on")
610

7-
define_property(DIRECTORY PROPERTY LLDB_TOLERATED_PLUGIN_DEPENDENCIES)
8-
define_property(TARGET PROPERTY LLDB_TOLERATED_PLUGIN_DEPENDENCIES INHERITED)
11+
define_property(DIRECTORY PROPERTY LLDB_TOLERATED_PLUGIN_DEPENDENCIES
12+
BRIEF_DOCS "LLDB plugin kinds which are depended on for historic reasons.")
13+
define_property(TARGET PROPERTY LLDB_TOLERATED_PLUGIN_DEPENDENCIES INHERITED
14+
BRIEF_DOCS "LLDB plugin kinds which are depended on for historic reasons.")
915

1016
option(LLDB_GENERATE_PLUGIN_DEP_GRAPH OFF)
1117

0 commit comments

Comments
 (0)