Specify MSVC architecture using presets

Shortens CI command lines slightly,
and documents the requirement.
This commit is contained in:
ISSOtm
2026-03-18 03:25:01 +01:00
committed by Eldred Habert
parent 5abebcf61f
commit 91fdfcd179
3 changed files with 21 additions and 6 deletions

View File

@@ -12,6 +12,25 @@
},
"warnings": { "uninitialized": true },
"errors": { "dev": true }
},
{
"name": "develop-msvc32",
"inherits": ["develop", "msvc32"]
},
{
"name": "develop-msvc64",
"inherits": ["develop", "msvc64"]
},
{
"name": "msvc32",
"description": "Flags for building 32-bit executables with MSVC",
"architecture": "Win32"
},
{
"name": "msvc64",
"description": "Flags for building 64-bit executables with MSVC",
"architecture": "x64"
}
]
}