mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-11 06:15:05 +00:00
cmake: Don't require code signing on MacOS
This commit is contained in:
parent
495b8cda66
commit
cb2621f98b
1 changed files with 8 additions and 0 deletions
|
@ -1494,6 +1494,14 @@ if(HAVE_QT)
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
# MacOS: Disable automatic Code Signing in Xcode
|
||||||
|
if(D_PLATFORM_MAC)
|
||||||
|
set_target_properties(${PROJECT_NAME} PROPERTIES
|
||||||
|
XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY ""
|
||||||
|
XCODE_ATTRIBUTE_CODE_SIGNING_REQUIRED "NO"
|
||||||
|
)
|
||||||
|
endif()
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Extra Tools
|
# Extra Tools
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
Loading…
Reference in a new issue