2015-10-29 10:54:24 -04:00
|
|
|
#!/bin/bash
|
2015-07-10 16:24:09 -04:00
|
|
|
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"
|
|
|
|
|
2015-11-18 16:11:53 -05:00
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
make "$@"
|
|
|
|
cd ..
|