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_win64_vs19.bat (315B)


      1 set outdir=temp\cmake_win64\
      2 cmake . -B %outdir% -G "Visual Studio 16 2019" -A x64 -Dgearmulator_BUILD_FX_PLUGIN=ON -DDSP56300_DEBUGGER=OFF
      3 IF %ERRORLEVEL% NEQ 0 (
      4 	popd 
      5 	exit /B 2
      6 )
      7 pushd %outdir%
      8 cmake --build . --config Release
      9 IF %ERRORLEVEL% NEQ 0 (
     10 	popd 
     11 	exit /B 2
     12 )
     13 cmake -P ../../scripts/pack.cmake
     14 popd