this repo has no description
at fixPythonPipStalling 12 lines 326 B view raw
1 2FUNCTION(add_darling_bundle name loader) 3 add_darling_library(${name} ${ARGN}) 4 set_property(TARGET ${name} APPEND_STRING PROPERTY 5 LINK_FLAGS " -Wl,-bundle ") 6 7 if (loader) 8 set_property(TARGET ${name} APPEND_STRING PROPERTY 9 LINK_FLAGS " -Wl,-bundle_loader,${loader} ") 10 endif (loader) 11ENDFUNCTION(add_darling_bundle) 12