mirror of
https://github.com/qvacua/vimr.git
synced 2024-12-01 10:02:36 +03:00
866540dac4
- to eliminate warnings - libintl.a and libintl.dylib are pre-built for 10.10 - When building neovim we have to pass the libintl location
25 lines
444 B
Bash
Executable File
25 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "### Building libnvim"
|
|
|
|
pushd neovim
|
|
|
|
ln -f -s ../local.mk .
|
|
|
|
rm -rf build
|
|
make distclean
|
|
|
|
echo "### Building libnvim"
|
|
CFLAGS='-mmacosx-version-min=10.10' MACOSX_DEPLOYMENT_TARGET=10.10 LibIntl_INCLUDE_DIRS=../third-party/libintl make libnvim
|
|
|
|
popd
|
|
|
|
echo "### Updating carthage"
|
|
carthage update --platform osx --cache-builds
|
|
|
|
echo "### Executing tests"
|
|
xcodebuild test -scheme SwiftNeoVim
|
|
xcodebuild test -scheme VimR
|