makedist-win.bat (4931B)
1 @echo off 2 3 REM - batch file to build Visual Studio project and zip the resulting binaries (or make installer) 4 REM - updating version numbers requires python and python path added to %PATH% env variable 5 REM - zipping requires 7zip in %ProgramFiles%\7-Zip\7z.exe 6 REM - building installer requires innosetup 6 in "%ProgramFiles(x86)%\Inno Setup 6\iscc" 7 REM - AAX codesigning requires wraptool tool added to %PATH% env variable and aax.key/.crt in .\..\..\iPlug2\Certificates\ 8 9 REM - two arguments are demo/full and zip/installer 10 11 set DEMO_ARG="%1" 12 set ZIP_ARG="%2" 13 14 if [%DEMO_ARG%]==[] goto USAGE 15 if [%ZIP_ARG%]==[] goto USAGE 16 17 echo SCRIPT VARIABLES ----------------------------------------------------- 18 echo DEMO_ARG %DEMO_ARG% 19 echo ZIP_ARG %ZIP_ARG% 20 echo END SCRIPT VARIABLES ----------------------------------------------------- 21 22 if %DEMO_ARG% == "demo" ( 23 echo Making TemplateProject Windows DEMO VERSION distribution ... 24 set DEMO=1 25 ) else ( 26 echo Making TemplateProject Windows FULL VERSION distribution ... 27 set DEMO=0 28 ) 29 30 if %ZIP_ARG% == "zip" ( 31 set ZIP=1 32 ) else ( 33 set ZIP=0 34 ) 35 36 echo ------------------------------------------------------------------ 37 echo Updating version numbers ... 38 39 call python prepare_resources-win.py %DEMO% 40 call python update_installer-win.py %DEMO% 41 42 cd ..\ 43 44 echo "touching source" 45 46 copy /b *.cpp+,, 47 48 echo ------------------------------------------------------------------ 49 echo Building ... 50 51 if exist "%ProgramFiles(x86)%" (goto 64-Bit) else (goto 32-Bit) 52 53 if not defined DevEnvDir ( 54 :32-Bit 55 echo 32-Bit O/S detected 56 call "%ProgramFiles%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_x64 57 goto END 58 59 :64-Bit 60 echo 64-Bit Host O/S detected 61 call "%ProgramFiles(x86)%\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" x86_x64 62 goto END 63 :END 64 ) 65 66 67 REM - set preprocessor macros like this, for instance to set demo preprocessor macro: 68 if %DEMO% == 1 ( 69 set CMDLINE_DEFINES="DEMO_VERSION=1" 70 REM -copy ".\resources\img\AboutBox_Demo.png" ".\resources\img\AboutBox.png" 71 ) else ( 72 set CMDLINE_DEFINES="DEMO_VERSION=0" 73 REM -copy ".\resources\img\AboutBox_Registered.png" ".\resources\img\AboutBox.png" 74 ) 75 76 REM - Could build individual targets like this: 77 REM - msbuild TemplateProject-app.vcxproj /p:configuration=release /p:platform=win32 78 79 REM echo Building 32 bit binaries... 80 REM msbuild TemplateProject.sln /p:configuration=release /p:platform=win32 /nologo /verbosity:minimal /fileLogger /m /flp:logfile=build-win.log;errorsonly 81 82 REM echo Building 64 bit binaries... 83 REM add projects with /t to build VST2 and AAX 84 msbuild TemplateProject.sln /t:TemplateProject-app;TemplateProject-vst3 /p:configuration=release /p:platform=x64 /nologo /verbosity:minimal /fileLogger /m /flp:logfile=build-win.log;errorsonly;append 85 86 REM --echo Copying AAX Presets 87 88 REM --echo ------------------------------------------------------------------ 89 REM --echo Code sign AAX binary... 90 REM --info at pace central, login via iLok license manager https://www.paceap.com/pace-central.html 91 REM --wraptool sign --verbose --account XXXXX --wcguid XXXXX --keyfile XXXXX.p12 --keypassword XXXXX --in .\build-win\aax\bin\TemplateProject.aaxplugin\Contents\Win32\TemplateProject.aaxplugin --out .\build-win\aax\bin\TemplateProject.aaxplugin\Contents\Win32\TemplateProject.aaxplugin 92 REM --wraptool sign --verbose --account XXXXX --wcguid XXXXX --keyfile XXXXX.p12 --keypassword XXXXX --in .\build-win\aax\bin\TemplateProject.aaxplugin\Contents\x64\TemplateProject.aaxplugin --out .\build-win\aax\bin\TemplateProject.aaxplugin\Contents\x64\TemplateProject.aaxplugin 93 94 if %ZIP% == 0 ( 95 REM - Make Installer (InnoSetup) 96 97 echo ------------------------------------------------------------------ 98 echo Making Installer ... 99 100 REM if exist "%ProgramFiles(x86)%" (goto 64-Bit-is) else (goto 32-Bit-is) 101 102 REM :32-Bit-is 103 REM REM "%ProgramFiles%\Inno Setup 6\iscc" /Q ".\installer\TemplateProject.iss" 104 REM goto END-is 105 106 REM :64-Bit-is 107 "%ProgramFiles(x86)%\Inno Setup 6\iscc" /Q ".\installer\TemplateProject.iss" 108 REM goto END-is 109 110 REM :END-is 111 112 REM - Codesign Installer for Windows 8+ 113 REM -"C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin\signtool.exe" sign /f "XXXXX.p12" /p XXXXX /d "TemplateProject Installer" ".\installer\TemplateProject Installer.exe" 114 115 REM -if %1 == 1 ( 116 REM -copy ".\installer\TemplateProject Installer.exe" ".\installer\TemplateProject Demo Installer.exe" 117 REM -del ".\installer\TemplateProject Installer.exe" 118 REM -) 119 120 echo Making Zip File of Installer ... 121 ) else ( 122 echo Making Zip File ... 123 ) 124 125 FOR /F "tokens=* USEBACKQ" %%F IN (`call python scripts\makezip-win.py %DEMO% %ZIP%`) DO ( 126 SET ZIP_NAME=%%F 127 ) 128 129 echo ------------------------------------------------------------------ 130 echo Printing log file to console... 131 132 type build-win.log 133 goto SUCCESS 134 135 :USAGE 136 echo Usage: %0 [demo/full] [zip/installer] 137 exit /B 1 138 139 :SUCCESS 140 echo %ZIP_NAME% 141 142 exit /B 0