Update Windows build instructions in documentation

- Clarified build commands for Windows, specifying the purpose of each preset.
- Added a new development build preset that includes Google Test and ROM testing.
- Enhanced documentation with a summary of build types for better user understanding.
This commit is contained in:
scawful
2025-09-27 20:17:13 -04:00
parent d2f724f57d
commit 4b898d7b00

View File

@@ -84,15 +84,24 @@ set VCPKG_ROOT=%CD%
#### Windows Build Commands
```cmd
# Debug build with vcpkg
# Debug build with vcpkg (minimal, no tests)
cmake --preset windows-debug
cmake --build build --preset windows-debug
# Release build with vcpkg
# Development build with vcpkg (includes Google Test)
cmake --preset windows-dev
cmake --build build --preset windows-dev
# Release build with vcpkg (optimized, no tests)
cmake --preset windows-release
cmake --build build --preset windows-release
```
**Build Types:**
- **windows-debug**: Minimal debug build, no Google Test
- **windows-dev**: Development build with Google Test and ROM testing
- **windows-release**: Optimized release build, no Google Test
## Build Targets
### Applications