mirror of
https://github.com/Xaymar/obs-StreamFX
synced 2024-11-15 00:05:06 +00:00
5a3954ae0e
Fixes several files incorrectly stated a different license from the actual project, as well as the copyright headers included in all files. This change has no effect on the licensing terms, it should clear up a bit of confusion by contributors. Plus the files get a bit smaller, and we have less duplicated information across the entire project. Overall the project is GPLv2 if not built with Qt, and GPLv3 if it is built with Qt. There are no parts licensed under a different license, all have been adapted from other compatible licenses into GPLv2 or GPLv3.
58 lines
1.9 KiB
CMake
58 lines
1.9 KiB
CMake
# AUTOGENERATED COPYRIGHT HEADER START
|
|
# Copyright (C) 2018-2023 Michael Fabian 'Xaymar' Dirks <info@xaymar.com>
|
|
# AUTOGENERATED COPYRIGHT HEADER END
|
|
|
|
include(CMakeParseArguments)
|
|
|
|
Function(CacheSet Name Value)
|
|
GET_PROPERTY(V_ADVANCED CACHE "${Name}" PROPERTY ADVANCED)
|
|
GET_PROPERTY(V_TYPE CACHE "${Name}" PROPERTY TYPE)
|
|
GET_PROPERTY(V_HELPSTRING CACHE "${Name}" PROPERTY HELPSTRING)
|
|
Set(${Name} ${Value} CACHE ${V_TYPE} ${V_HELPSTRING} FORCE)
|
|
If(${V_ADVANCED})
|
|
Mark_As_Advanced(FORCE ${Name})
|
|
EndIf()
|
|
EndFunction()
|
|
|
|
Function(CacheClear Name)
|
|
GET_PROPERTY(V_ADVANCED CACHE "${Name}" PROPERTY ADVANCED)
|
|
GET_PROPERTY(V_TYPE CACHE "${Name}" PROPERTY TYPE)
|
|
GET_PROPERTY(V_HELPSTRING CACHE "${Name}" PROPERTY HELPSTRING)
|
|
Set(${Name} 0 CACHE ${V_TYPE} ${V_HELPSTRING} FORCE)
|
|
If(${V_ADVANCED})
|
|
Mark_As_Advanced(FORCE ${Name})
|
|
EndIf()
|
|
EndFunction()
|
|
|
|
function(mac_get_linker_id)
|
|
cmake_parse_arguments(
|
|
_MGLI "" "TARGET;OUTPUT" "" ${ARGN}
|
|
)
|
|
|
|
get_target_property(_MGLI_TARGET_LOC ${_MGLI_TARGET} IMPORTED_LOCATION)
|
|
if(NOT _MGLI_TARGET_LOC)
|
|
get_target_property(_MGLI_TARGET_LOC ${_MGLI_TARGET} IMPORTED_LOCATION_MINSIZEREL)
|
|
endif()
|
|
if(NOT _MGLI_TARGET_LOC)
|
|
get_target_property(_MGLI_TARGET_LOC ${_MGLI_TARGET} IMPORTED_LOCATION_RELEASE)
|
|
endif()
|
|
if(NOT _MGLI_TARGET_LOC)
|
|
get_target_property(_MGLI_TARGET_LOC ${_MGLI_TARGET} IMPORTED_LOCATION_RELWITHDEBINFO)
|
|
endif()
|
|
if(NOT _MGLI_TARGET_LOC)
|
|
get_target_property(_MGLI_TARGET_LOC ${_MGLI_TARGET} IMPORTED_LOCATION_DEBUG)
|
|
endif()
|
|
|
|
execute_process(
|
|
COMMAND otool -D ${_MGLI_TARGET_LOC}
|
|
WORKING_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}
|
|
RESULT_VARIABLE _MGLI_RES
|
|
OUTPUT_VARIABLE _MGLI_LINK OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
ERROR_VARIABLE _MGLI_ERR ERROR_STRIP_TRAILING_WHITESPACE ERROR_QUIET
|
|
)
|
|
STRING(REGEX REPLACE ";" "\\\\;" _MGLI_LINK "${_MGLI_LINK}")
|
|
STRING(REGEX REPLACE "\n" ";" _MGLI_LINK "${_MGLI_LINK}")
|
|
list(POP_FRONT _MGLI_LINK)
|
|
|
|
set(${_MGLI_OUTPUT} "${_MGLI_LINK}" PARENT_SCOPE)
|
|
endfunction()
|