48@@ -49,6 +49,9 @@ Build using:
49
50 gmake -C depends HOST=x86_64-w64-mingw32 # Append "-j N" for N parallel jobs.
51 cmake -B build --toolchain depends/x86_64-w64-mingw32/toolchain.cmake
52+
53+Run `cmake -B build -LH` to see the full list of available options.
54+
nit:
0 cmake -B build --toolchain depends/x86_64-w64-mingw32/toolchain.cmake
1 (run `cmake -B build -LH` to see the full list of available options)
I think it needs to match the format in doc/build-unix.md?
Not necessarily, in fact, most build instructions have different structure (unify it, if possible, could be the goal of a different PR, as you can see here we need to copy stuff for every platform). My suggestion is not a blocker just that you are adding this line in the middle of the building instructions, and that’s not the case for the other file you are updating. It’s an observation, up to you if you want to leave it that way or not.
Thanks for clarifying. I think i’ll keep it as-is for now. Yes, unifying structure across build docs as you have suggested is great and can indeed be tackled seperately. Appreciate your feedback!