Notepad3/Build/BuildAll.cmd
Derick Payne 20c2d857b1 Add ARM64 configuration support and build scripts
- Add ARM64 configurations to all project files (vcxproj)
- Add build scripts (Build_ARM64.cmd, Build_x64.cmd, etc.)
- Add ARM64 fix scripts for OutDir, CrossCompile, and CETCompat issues
- Update Notepad3.sln with ARM64 platform configurations
2026-01-19 02:12:15 +02:00

10 lines
259 B
Batchfile

@echo off
REM Build All Platforms (Win32, x64, x64_AVX2, ARM64)
REM Usage: BuildAll.cmd [Release|Debug]
setlocal
set CONFIG=%1
if "%CONFIG%"=="" set CONFIG=Release
powershell -ExecutionPolicy Bypass -File "%~dp0scripts\BuildAll.ps1" -Configuration %CONFIG%