iOS module config

This commit is contained in:
pengfei.zhou
2019-07-26 18:15:51 +08:00
parent f0b003cb66
commit bc1c283b47
12 changed files with 242 additions and 99 deletions

View File

@@ -83,6 +83,14 @@ EOM
;;
esac
}
if [[ "$CONFIGURATION" == "Debug" ]]; then
install_resource "${PODS_ROOT}/../../Pod/Assets/doric-lib.js"
install_resource "${PODS_ROOT}/../../Pod/Assets/doric-sandbox.js"
fi
if [[ "$CONFIGURATION" == "Release" ]]; then
install_resource "${PODS_ROOT}/../../Pod/Assets/doric-lib.js"
install_resource "${PODS_ROOT}/../../Pod/Assets/doric-sandbox.js"
fi
mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"
rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}"