xlnt/build/cmake/build-osx.sh

12 lines
131 B
Bash
Raw Normal View History

ACTION=$1
if [ "$ACTION" = "clean" ]; then
rm -rf build
exit 0
fi
mkdir build
cd build
2015-10-27 11:06:00 +08:00
cmake -G "Unix Makefiles" ..
make