From 9577daa3b88a8fbe8c96d2848adcc88c55c55a29 Mon Sep 17 00:00:00 2001 From: frankomosh Date: Wed, 5 Nov 2025 11:03:49 +0300 Subject: [PATCH] doc: Add cmake help option in Windows build instructions Used to display available configuration options, for consistency with recent changes in Unix build docs Co-authored-by: stickies-v --- doc/build-windows-msvc.md | 2 ++ doc/build-windows.md | 3 +++ 2 files changed, 5 insertions(+) diff --git a/doc/build-windows-msvc.md b/doc/build-windows-msvc.md index 2d85d223e97..7c07a198502 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 84db7fa4b5f..ce822dd0dc5 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