File tree Expand file tree Collapse file tree 3 files changed +12
-2
lines changed
Expand file tree Collapse file tree 3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1313 ARTIFACT_EXT : mac
1414 PLUGINVAL_VER : v1.0.4
1515 VST3_VER : v3.8.0_build_66
16- CLAP_VER : " 1.2.5 "
16+ CLAP_VER : " main "
1717 CLAP_VALIDATOR_VER : " 0.3.2"
1818
1919jobs :
Original file line number Diff line number Diff line change 1212 BUILD_DIR : build-win
1313 ARTIFACT_EXT : win
1414 PLUGINVAL_VER : v1.0.4
15- CLAP_VER : " 1.2.5 "
15+ CLAP_VER : " main "
1616 CLAP_VALIDATOR_VER : " 0.3.2"
1717
1818jobs :
Original file line number Diff line number Diff line change @@ -69,9 +69,19 @@ REM - msbuild TemplateProject-app.vcxproj /p:configuration=release /p:platform=x
6969echo Building x64 binaries...
7070REM add projects with /t to build VST2 and AAX
7171msbuild TemplateProject.sln /t:TemplateProject-app;TemplateProject-vst3;TemplateProject-clap /p:configuration=release /p:platform=x64 /nologo /verbosity:minimal /fileLogger /m /flp:logfile=build-win.log;errorsonly
72+ if %ERRORLEVEL% neq 0 (
73+ echo ERROR: x64 build failed
74+ type build-win.log
75+ exit /B 1
76+ )
7277
7378echo Building ARM64EC binaries...
7479msbuild TemplateProject.sln /t:TemplateProject-app;TemplateProject-vst3;TemplateProject-clap /p:configuration=release /p:platform=ARM64EC /nologo /verbosity:minimal /fileLogger /m /flp:logfile=build-win-arm64ec.log;errorsonly
80+ if %ERRORLEVEL% neq 0 (
81+ echo ERROR: ARM64EC build failed
82+ type build-win-arm64ec.log
83+ exit /B 1
84+ )
7585
7686REM --echo Copying AAX Presets
7787
You can’t perform that action at this time.
0 commit comments