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