[Lldb-commits] [lldb] 56db241 - [lldb-dap] Add missing tablegen dependency to lldb-dap (#172891)

via lldb-commits lldb-commits at lists.llvm.org
Thu Dec 18 13:39:15 PST 2025


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


        


More information about the lldb-commits mailing list