From 4b898d7b004b09559781992594a8919562ec9f9d Mon Sep 17 00:00:00 2001 From: scawful Date: Sat, 27 Sep 2025 20:17:13 -0400 Subject: [PATCH] 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. --- docs/02-build-instructions.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docs/02-build-instructions.md b/docs/02-build-instructions.md index ead8f3d2..50665666 100644 --- a/docs/02-build-instructions.md +++ b/docs/02-build-instructions.md @@ -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