Tyro/cmake.sh

13 lines
281 B
Bash
Raw Normal View History

2015-07-10 16:24:09 -04:00
#!/bin/sh
mkdir -p build
unset MACOSX_DEPLOYMENT_TARGET
unset CMAKE_OSX_SYSROOT
export MACOSX_DEPLOYMENT_TARGET="10.7"
export CMAKE_OSX_SYSROOT="/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.7.sdk"
cd build
cmake ..
make "$@"
cd ..