sfizz/.travis/script_osx.sh

9 lines
326 B
Bash
Raw Normal View History

2020-03-08 22:47:26 +01:00
#!/bin/bash
set -ex
mkdir -p build/${INSTALL_DIR} && cd build
2020-03-10 21:59:32 +01:00
cmake -DCMAKE_BUILD_TYPE=Release -DSFIZZ_VST=ON -DSFIZZ_TESTS=OFF ..
2020-03-08 22:47:26 +01:00
make -j$(sysctl -n hw.ncpu)
# Xcode not currently supported, see https://gitlab.kitware.com/cmake/cmake/issues/18088
# xcodebuild -project sfizz.xcodeproj -alltargets -configuration Debug build