this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix add_darling_object_library to make 'i386_ONLY' and 'x86_64_ONLY' work

+3 -3
+3 -3
cmake/darling_lib.cmake
··· 162 162 163 163 function(add_darling_object_library name) 164 164 cmake_parse_arguments(OBJECT_LIB "i386_ONLY;x86_64_ONLY" "" "" ${ARGN}) 165 - foreach(f IN LISTS ARGN) 166 - set(files ${files} ${f}) 167 - endforeach(f) 165 + foreach(f IN LISTS OBJECT_LIB_UNPARSED_ARGUMENTS) 166 + set(files ${files} ${f}) 167 + endforeach(f) 168 168 169 169 add_library(${name} OBJECT ${files}) 170 170 add_dependencies(${name} lipo)