From 1395d4315bf49be64817b79e3863d183bb28c3e1 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Wed, 8 Oct 2025 13:59:51 -0700 Subject: [PATCH] [lldb] Remove unnecessary LINK_LIBS in LLDBBreakpointTests (NFC) --- lldb/unittests/Breakpoint/CMakeLists.txt | 24 ++++++++++-------------- 1 file changed, 10 insertions(+), 14 deletions(-) diff --git a/lldb/unittests/Breakpoint/CMakeLists.txt b/lldb/unittests/Breakpoint/CMakeLists.txt index 3e4161313cd9..dec2265a725a 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 + )