Commit 793a81a9 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

MacOSX/Framework/Pre-Compile.sh: Copy the luameta and luaplaylist folder....

MacOSX/Framework/Pre-Compile.sh: Copy the luameta and luaplaylist folder. (Need to properly check modifications probably).
parent b494b2d8
......@@ -17,6 +17,7 @@ if test "${ACTION}" = "build"; then
target="${TARGET_BUILD_DIR}/${CONTENTS_FOLDER_PATH}"
target_lib="${target}/${lib}" # Should we consider using a different well-known folder like shared resources?
target_modules="${target}/${modules}" # Should we consider using a different well-known folder like shared resources?
target_share="${target}/${share}" # Should we consider using a different well-known folder like shared resources?
linked_libs=" "
##########################
......@@ -112,8 +113,10 @@ if test "${ACTION}" = "build"; then
;;
esac
done
# Build the library folder
# Build the share folder
##########################
install_library "${VLC_BUILD_DIR}/src/.libs/libvlc-control.dylib" ${target_lib} "library"
install_library "${VLC_BUILD_DIR}/src/.libs/libvlc.dylib" ${target_lib} "library"
# Build the library folder (Same as VLCKit.framework/lib in Makefile)
echo "Building share folder..."
cp -R ${VLC_BUILD_DIR}/share/luameta ${target_share}
cp -R ${VLC_BUILD_DIR}/share/luaplaylist ${target_share}
fi
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment