[Lldb-commits] [lldb] 1395d43 - [lldb] Remove unnecessary LINK_LIBS in LLDBBreakpointTests (NFC)

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Wed Oct 8 14:02:03 PDT 2025


Author: Jonas Devlieghere
Date: 2025-10-08T13:59:51-07:00
New Revision: 1395d4315bf49be64817b79e3863d183bb28c3e1

URL: https://github.com/llvm/llvm-project/commit/1395d4315bf49be64817b79e3863d183bb28c3e1
DIFF: https://github.com/llvm/llvm-project/commit/1395d4315bf49be64817b79e3863d183bb28c3e1.diff

LOG: [lldb] Remove unnecessary LINK_LIBS in LLDBBreakpointTests (NFC)

Added: 
    

Modified: 
    lldb/unittests/Breakpoint/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/lldb/unittests/Breakpoint/CMakeLists.txt b/lldb/unittests/Breakpoint/CMakeLists.txt
index 3e4161313cd9d..dec2265a725a5 100644
--- a/lldb/unittests/Breakpoint/CMakeLists.txt
+++ b/lldb/unittests/Breakpoint/CMakeLists.txt
@@ -1,14 +1,10 @@
-add_lldb_unittest(LLDBBreakpointTests      
-  BreakpointIDTest.cpp
-  WatchpointAlgorithmsTests.cpp
-
-  LINK_COMPONENTS
-    Support
-  LINK_LIBS
-    liblldb
-    lldbBreakpoint
-    lldbCore
-    LLVMTestingSupport
-    lldbUtilityHelpers
-    lldbPluginPlatformMacOSX
-  )
+add_lldb_unittest(LLDBBreakpointTests
+  BreakpointIDTest.cpp
+  WatchpointAlgorithmsTests.cpp
+
+  LINK_COMPONENTS
+    Support
+  LINK_LIBS
+    lldbBreakpoint
+    lldbCore
+  )


        


More information about the lldb-commits mailing list