1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-10-28 12:11:55 +03:00

GH-288 Copy the full runtime folder into app package

This commit is contained in:
Tae Won Ha 2016-10-08 17:47:15 +02:00
parent 8e8ac67d31
commit 1a471bd554
No known key found for this signature in database
GPG Key ID: E40743465B5B8B44

View File

@ -22,12 +22,26 @@ rm -rf build
git submodule update --init git submodule update --init
# delete previously built libnvim # Build NeoVim
# 0. Delete previously built things
# 1. Build normally to get the full runtime folder and copy it to the neovim's project root
# 2. Delete the build folder to re-configure
# 3. Build libnvim
pushd neovim pushd neovim
ln -f -s ../local.mk . ln -f -s ../local.mk .
rm -rf build
make distclean make distclean
make CMAKE_BUILD_TYPE=Release libnvim
make CMAKE_FLAGS="-DCUSTOM_UI=0"
make CMAKE_FLAGS="-DCMAKE_INSTALL_PREFIX=/tmp/nvim" install
cp -r /tmp/nvim/share/nvim/runtime .
make clean
rm -rf build
make libnvim
popd popd
carthage update --platform osx carthage update --platform osx