See more about this on: https://github.com/brightray/brightray_example/commit/fdf20531bd8618d344447c5090f8594a62de1ed6
@@ -334,6 +334,15 @@
'<@(fix_framework_link_command)',
],
},
+ {
+ 'postbuild_name': 'Add symlinks for framework subdirectories',
+ 'action': [
+ 'tools/mac/create-framework-subdir-symlinks.sh',
+ '<(product_name)',
+ 'Libraries',
+ 'Frameworks',
+ ],
+ },
}, # target framework
{
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+set -e
+cd "${BUILT_PRODUCTS_DIR}/${1}.framework"
+shift
+while [ ! -z "${1}" ]; do
+ ln -sf Versions/Current/"${1}" "${1}"
+ shift
+done