1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-28 02:54:31 +03:00
vimr/bin/build_libnvim.sh
2019-03-05 15:32:46 +01:00

23 lines
597 B
Bash
Executable File

#!/bin/bash
set -e
DEPLOYMENT_TARGET="10.12"
echo "### Building libnvim"
# Brew's gettext does not get sym-linked to PATH
export PATH=/usr/local/opt/gettext/bin:$PATH
ln -sf ../local.mk .
# We assume that we're already in the neovim project root.
# Use custom gettext source only when building libnvim => not in local.mk which is also used to build the full nvim
# to get the full runtime.
make CFLAGS="-mmacosx-version-min=${DEPLOYMENT_TARGET}" \
MACOSX_DEPLOYMENT_TARGET=${DEPLOYMENT_TARGET} \
CMAKE_EXTRA_FLAGS="-DGETTEXT_SOURCE=CUSTOM" \
libnvim
echo "### Built libnvim"