
Summary: LLDB_PLUGINS doesn't exist as a variable, so this line doesn't add any dependencies and is just confusing. It seems this slipped in from the gdb-remote CMake I was using as a CMake template. The gdb-remote CMake itself is using a local LLDB_PLUGINS variable, so that code is fine. Reviewers: davide Reviewed By: davide Subscribers: davide, mgorny, lldb-commits Differential Revision: https://reviews.llvm.org/D49695 llvm-svn: 337741
21 lines
274 B
CMake
21 lines
274 B
CMake
|
|
remove_module_flags()
|
|
include_directories(..)
|
|
|
|
add_lldb_library(lldbHostMacOSXObjCXX
|
|
Host.mm
|
|
HostInfoMacOSX.mm
|
|
HostThreadMacOSX.mm
|
|
|
|
LINK_LIBS
|
|
lldbCore
|
|
lldbSymbol
|
|
lldbTarget
|
|
lldbUtility
|
|
${EXTRA_LIBS}
|
|
|
|
LINK_COMPONENTS
|
|
Object
|
|
Support
|
|
)
|