From e434b8c5ae4a2569f6ccfa1a6975f0f376ceac90 Mon Sep 17 00:00:00 2001 From: Chunbo Hua Date: Tue, 13 Aug 2024 16:09:23 +0800 Subject: [PATCH] Fix build script instructions for Windows Bug: 359296629 Change-Id: I118650a89d3e3c9500b592f3f62f058e378f514e Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/5785268 Reviewed-by: Frank Barchard --- docs/getting_started.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/getting_started.md b/docs/getting_started.md index f2f71b8b4..a05272786 100644 --- a/docs/getting_started.md +++ b/docs/getting_started.md @@ -59,13 +59,13 @@ To get just the source (not buildable): ### Windows - call gn gen out\Release "--args=is_debug=false target_cpu=\"x64\"" - call gn gen out\Debug "--args=is_debug=true target_cpu=\"x64\"" + gn gen out\Release "--args=is_debug=false target_cpu=\"x64\"" + gn gen out\Debug "--args=is_debug=true target_cpu=\"x64\"" ninja -v -C out\Release ninja -v -C out\Debug - call gn gen out\Release "--args=is_debug=false target_cpu=\"x86\"" - call gn gen out\Debug "--args=is_debug=true target_cpu=\"x86\"" + gn gen out\Release "--args=is_debug=false target_cpu=\"x86\"" + gn gen out\Debug "--args=is_debug=true target_cpu=\"x86\"" ninja -v -C out\Release ninja -v -C out\Debug