From f0bcbb7fb1729dc8ae88bf1e2afb5f1b3346ee8d Mon Sep 17 00:00:00 2001 From: Rusty Wagner Date: Mon, 25 Sep 2023 13:21:30 -0600 Subject: [PATCH] Remove implicit dependencies to fix new warning in latest Xcode --- cli/CMakeLists.txt | 4 ++-- ui/CMakeLists.txt | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/CMakeLists.txt b/cli/CMakeLists.txt index d8b55d39..1e10e846 100644 --- a/cli/CMakeLists.txt +++ b/cli/CMakeLists.txt @@ -9,9 +9,9 @@ file(GLOB SOURCES *.cpp *.h) add_executable(debugger-cli ${SOURCES}) if(UNIX AND NOT APPLE) - target_link_libraries(debugger-cli debuggerapi binaryninjaapi pthread) + target_link_libraries(debugger-cli debuggerapi pthread) else() - target_link_libraries(debugger-cli debuggerapi binaryninjaapi) + target_link_libraries(debugger-cli debuggerapi) endif() set_target_properties(debugger-cli PROPERTIES diff --git a/ui/CMakeLists.txt b/ui/CMakeLists.txt index 17eb71ae..dc15000c 100644 --- a/ui/CMakeLists.txt +++ b/ui/CMakeLists.txt @@ -35,5 +35,5 @@ set_target_properties(debuggerui PROPERTIES POSITION_INDEPENDENT_CODE ON ) -target_link_libraries(debuggerui debuggerapi binaryninjaui binaryninjaapi Qt6::Core Qt6::Gui Qt6::Widgets) +target_link_libraries(debuggerui debuggerapi binaryninjaui Qt6::Core Qt6::Gui Qt6::Widgets)