doc: Add cmake help option in Windows build instructions
What changed, and why it matters
This commit only updates two Windows build instruction documents to mention a standard CMake help command. It does not change any program code, build scripts, or configuration logic, and has no security relevance.
No action required; this is a benign documentation update.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The diff adds a single line to doc/build-windows-msvc.md and doc/build-windows.md telling users they can run cmake -B build -LH to list available CMake options. This is a documentation-only change for consistency with Unix build docs. No source code, build system behavior, or security boundary is modified.
Changed components
doc/build-windows-msvc.mddoc/build-windows.mdInspect captured patch +5 / −0
diff --git a/doc/build-windows-msvc.md b/doc/build-windows-msvc.md
index 2d85d223..7c07a198 100644
--- a/doc/build-windows-msvc.md
+++ b/doc/build-windows-msvc.md
@@ -50,6 +50,8 @@ CMake will put the resulting object files, libraries, and executables into a ded
In the following instructions, the "Debug" configuration can be specified instead of the "Release" one.
+Run `cmake -B build -LH` to see the full list of available options.
+
### 4. Building with Static Linking with GUI
```
diff --git a/doc/build-windows.md b/doc/build-windows.md
index 84db7fa4..ce822dd0 100644
--- a/doc/build-windows.md
+++ b/doc/build-windows.md
@@ -49,6 +49,9 @@ Build using:
gmake -C depends HOST=x86_64-w64-mingw32 # Append "-j N" for N parallel jobs.
cmake -B build --toolchain depends/x86_64-w64-mingw32/toolchain.cmake
+
+Run `cmake -B build -LH` to see the full list of available options.
+
cmake --build build # Append "-j N" for N parallel jobs.
## Depends system
Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.