Skip to content

Commit

Permalink
Remove implicit dependencies to fix new warning in latest Xcode
Browse files Browse the repository at this point in the history
  • Loading branch information
D0ntPanic committed Sep 25, 2023
1 parent 02dff7b commit f0bcbb7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cli/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ui/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

0 comments on commit f0bcbb7

Please sign in to comment.