================ @@ -6,6 +6,14 @@ lldb_tablegen(ProcessKDPPropertiesEnum.inc -gen-lldb-property-enum-defs SOURCE ProcessKDPProperties.td TARGET LLDBPluginProcessMacOSXKernelPropertiesEnumGen) +lldb_tablegen(ProcessKDPProperties.json -gen-lldb-property-docs-json + SOURCE ProcessKDPProperties.td + TARGET LLDBPluginProcessMacOSXKernelPropertiesJsonGen) + +if (NOT CMAKE_SYSTEM_NAME MATCHES "Darwin") + return() +endif() ---------------- DavidSpickett wrote:
Did you change something at a higher level so that this file is now always sourced? Just wondering why we didn't need the system name check previously. Good thought to do this though, we want all possible settings in the docs, and I wouldn't have thought to check this. https://github.com/llvm/llvm-project/pull/168245 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
