teemperor created this revision.
Herald added a subscriber: mgorny.

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.


https://reviews.llvm.org/D49695

Files:
  source/Host/macosx/objcxx/CMakeLists.txt
  source/Plugins/Platform/MacOSX/objcxx/CMakeLists.txt


Index: source/Plugins/Platform/MacOSX/objcxx/CMakeLists.txt
===================================================================
--- source/Plugins/Platform/MacOSX/objcxx/CMakeLists.txt
+++ source/Plugins/Platform/MacOSX/objcxx/CMakeLists.txt
@@ -9,7 +9,6 @@
     lldbSymbol
     lldbTarget
     lldbUtility
-    ${LLDB_PLUGINS}
     ${EXTRA_LIBS}
 
   LINK_COMPONENTS
Index: source/Host/macosx/objcxx/CMakeLists.txt
===================================================================
--- source/Host/macosx/objcxx/CMakeLists.txt
+++ source/Host/macosx/objcxx/CMakeLists.txt
@@ -12,7 +12,6 @@
     lldbSymbol
     lldbTarget
     lldbUtility
-    ${LLDB_PLUGINS}
     ${EXTRA_LIBS}
 
   LINK_COMPONENTS


Index: source/Plugins/Platform/MacOSX/objcxx/CMakeLists.txt
===================================================================
--- source/Plugins/Platform/MacOSX/objcxx/CMakeLists.txt
+++ source/Plugins/Platform/MacOSX/objcxx/CMakeLists.txt
@@ -9,7 +9,6 @@
     lldbSymbol
     lldbTarget
     lldbUtility
-    ${LLDB_PLUGINS}
     ${EXTRA_LIBS}
 
   LINK_COMPONENTS
Index: source/Host/macosx/objcxx/CMakeLists.txt
===================================================================
--- source/Host/macosx/objcxx/CMakeLists.txt
+++ source/Host/macosx/objcxx/CMakeLists.txt
@@ -12,7 +12,6 @@
     lldbSymbol
     lldbTarget
     lldbUtility
-    ${LLDB_PLUGINS}
     ${EXTRA_LIBS}
 
   LINK_COMPONENTS
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to