gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

build_linux_console.sh (245B)


      1 host=$(hostname)
      2 
      3 if [ -z "$1" ]
      4 then
      5 	threads=4
      6 else
      7 	threads=$1
      8 fi
      9 
     10 cmake . -B ./temp/cmake_linux_${host} -Dgearmulator_BUILD_JUCEPLUGIN=OFF -DCMAKE_BUILD_TYPE=Release
     11 cd ./temp/cmake_linux_${host}
     12 cmake --build . --config Release -j $threads