sfizz/scripts/appveyor/before_build.sh

17 lines
404 B
Bash
Raw Normal View History

2020-10-27 04:12:54 +01:00
#!/bin/bash
set -ex
git submodule update --init --recursive
mkdir -p build/${INSTALL_DIR} && cd build
cmake -DCMAKE_BUILD_TYPE=Release \
-DSFIZZ_VST=ON \
-DSFIZZ_AU=ON \
-DSFIZZ_RENDER=OFF \
-DSFIZZ_SHARED=OFF \
2020-10-31 20:52:38 +01:00
-DSFIZZ_TESTS=ON \
2020-10-27 04:12:54 +01:00
-DCMAKE_CXX_STANDARD=14 \
-DLV2PLUGIN_INSTALL_DIR=/ \
-DVSTPLUGIN_INSTALL_DIR=/ \
-DAUPLUGIN_INSTALL_DIR=/ \
2020-10-27 04:12:54 +01:00
..