From a60e3c925ab8ecd28612409c055922c2eb6f44c1 Mon Sep 17 00:00:00 2001 From: Jacob Abrams Date: Thu, 11 Dec 2025 21:23:50 -0800 Subject: [PATCH] Update Windows Build instructions Remove `--target` (results in an error) Add hint to use `camke --help` to determine the correct generator --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 58453ecf..fbe72cfb 100644 --- a/README.md +++ b/README.md @@ -2352,12 +2352,13 @@ In PowerShell: cd flatcc mkdir build\MSVC cd build\MSVC + cmake --help # Lists generators to choose from cmake -G "Visual Studio 14 2015" ..\.. Optionally also build from the command line (in build\MSVC): - cmake --build . --target --config Debug - cmake --build . --target --config Release + cmake --build . --config Debug + cmake --build . --config Release In Visual Studio: