From 6b861806a653c6490c247819f7959ca39f54e752 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?A=20C=C5=93ur?= Date: Fri, 25 Nov 2022 01:20:48 +0800 Subject: [PATCH] Fix building with cmake on macOS Mojave (#4234) --- macosx/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macosx/CMakeLists.txt b/macosx/CMakeLists.txt index 14c9e2723..cf7f7da80 100644 --- a/macosx/CMakeLists.txt +++ b/macosx/CMakeLists.txt @@ -449,7 +449,7 @@ target_link_libraries(${TR_NAME}-mac if(NOT CMAKE_GENERATOR STREQUAL Xcode) add_custom_command(TARGET ${TR_NAME}-mac POST_BUILD - COMMAND ${CODESIGN_EXECUTABLE} -s - -o linker-signed $) + COMMAND ${CODESIGN_EXECUTABLE} -s - $) endif() set(MAC_BUNDLE_NAME Transmission)