Skip to content

Commit 1afa997

Browse files
author
git apple-llvm automerger
committed
Merge commit 'ca3610ab8ed9' from swift/release/6.3 into stable/21.x
2 parents c9b7e7a + ca3610a commit 1afa997

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

lldb/tools/lldb-dap/CMakeLists.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
# We need to include the llvm components we depend on manually, as liblldb does
22
# not re-export those.
33
set(LLVM_LINK_COMPONENTS Support)
4-
set(LLVM_TARGET_DEFINITIONS Options.td)
5-
tablegen(LLVM Options.inc -gen-opt-parser-defs)
6-
add_public_tablegen_target(LLDBDAPOptionsTableGen)
74

85
add_lldb_library(lldbDAP
96
Breakpoint.cpp

lldb/tools/lldb-dap/tool/CMakeLists.txt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,19 @@
1+
set(LLVM_TARGET_DEFINITIONS Options.td)
2+
tablegen(LLVM Options.inc -gen-opt-parser-defs)
3+
add_public_tablegen_target(LLDBDAPOptionsTableGen)
4+
15
add_lldb_tool(lldb-dap
26
lldb-dap.cpp
37

48
LINK_LIBS
59
lldbDAP
610
)
711

12+
add_dependencies(lldb-dap
13+
LLDBDAPOptionsTableGen
14+
${tablegen_deps}
15+
)
16+
817
if(APPLE)
918
configure_file(
1019
${CMAKE_CURRENT_SOURCE_DIR}/lldb-dap-Info.plist.in

0 commit comments

Comments
 (0)