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