transitioned to cmake for desktop build

This commit is contained in:
essej
2022-04-19 16:30:36 -04:00
parent a4922bd275
commit 7e71997593
13 changed files with 1650 additions and 44 deletions

25
setupcmake.sh Executable file
View File

@ -0,0 +1,25 @@
#!/bin/bash
DEFS=""
CONFIG="Release"
if [ -n "${AAX_SDK_PATH}" ] ; then
echo "Will build AAX plugin"
DEPS="$DEPS -DAAX_SDK_PATH=${AAX_SDK_PATH}"
fi
#if [ -n "${VST2_SDK_PATH}" ] ; then
# echo "Will build VST2 plugin"
# DEPS="$DEPS -DVST2_SDK_PATH=${VST2_SDK_PATH}"
#fi
if [ "$1" = "debug" ] ; then
CONFIG="Debug"
fi
cmake -DCMAKE_BUILD_TYPE=$CONFIG $DEPS -B build