2016-10-14 13:15:32 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
echo "### Building VimR"
|
|
|
|
|
|
|
|
# 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
|
2016-10-14 13:51:49 +03:00
|
|
|
pushd neovim
|
|
|
|
|
|
|
|
ln -f -s ../local.mk .
|
|
|
|
|
|
|
|
rm -rf build
|
2016-10-15 00:43:43 +03:00
|
|
|
make clean
|
2016-10-14 13:51:49 +03:00
|
|
|
|
|
|
|
echo "### Building nvim to get the runtime folder"
|
|
|
|
make CMAKE_FLAGS="-DCUSTOM_UI=0"
|
|
|
|
make CMAKE_FLAGS="-DCMAKE_INSTALL_PREFIX=/tmp/nvim" install
|
|
|
|
cp -r /tmp/nvim/share/nvim/runtime .
|
|
|
|
|
|
|
|
rm -rf build
|
2016-10-15 00:43:43 +03:00
|
|
|
make clean
|
2016-10-14 13:51:49 +03:00
|
|
|
|
|
|
|
echo "### Building libnvim"
|
|
|
|
make libnvim
|
|
|
|
|
|
|
|
popd
|
2016-10-14 13:15:32 +03:00
|
|
|
|
|
|
|
echo "### Building vimr target"
|
|
|
|
xcodebuild CODE_SIGN_IDENTITY="Developer ID Application: Tae Won Ha (H96Q2NKTQH)" -configuration Release -target VimR
|
|
|
|
|
|
|
|
echo "### Built VimR"
|