Author: Dave Lee Date: 2025-12-18T13:39:12-08:00 New Revision: 56db2416ff3e3725b48669f0fa94ea6c0f97f51a
URL: https://github.com/llvm/llvm-project/commit/56db2416ff3e3725b48669f0fa94ea6c0f97f51a DIFF: https://github.com/llvm/llvm-project/commit/56db2416ff3e3725b48669f0fa94ea6c0f97f51a.diff LOG: [lldb-dap] Add missing tablegen dependency to lldb-dap (#172891) rdar://165929985 Added: Modified: lldb/tools/lldb-dap/tool/CMakeLists.txt Removed: ################################################################################ diff --git a/lldb/tools/lldb-dap/tool/CMakeLists.txt b/lldb/tools/lldb-dap/tool/CMakeLists.txt index 5335d25c5d450..692aeedd9531b 100644 --- a/lldb/tools/lldb-dap/tool/CMakeLists.txt +++ b/lldb/tools/lldb-dap/tool/CMakeLists.txt @@ -9,6 +9,11 @@ add_lldb_tool(lldb-dap lldbDAP ) +add_dependencies(lldb-dap + LLDBDAPOptionsTableGen + ${tablegen_deps} +) + if(APPLE) configure_file( ${CMAKE_CURRENT_SOURCE_DIR}/lldb-dap-Info.plist.in _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
