Support Win32 cpp build

This commit is contained in:
Jackson Coxson
2025-08-25 21:41:34 -06:00
parent f18b607bca
commit 7baa8a73b5
2 changed files with 15 additions and 0 deletions

View File

@@ -29,6 +29,9 @@ IF /I "%~1" == "x64" (
IF /I "%~1" == "ARM64" (
SET "RUST_TARGET=aarch64-pc-windows-msvc"
)
IF /I "%~1" == "Win32" (
SET "RUST_TARGET=i686-pc-windows-msvc"
)
IF NOT DEFINED RUST_TARGET (
echo Error: Unsupported Visual Studio platform '%~1'.