From 40f9062682dca308ea6920ef8a0b51848f2ebc56 Mon Sep 17 00:00:00 2001 From: TaurusXin Date: Fri, 16 Feb 2024 22:06:58 +0800 Subject: [PATCH] update: README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e7c7824..b2022d6 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ git submodule update --init --recursive cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Release -B build # Windows MSVC -cmake -G "Visual Studio 17 2022" -A x64 -DCMAKE_BUILD_TYPE=Release -B build +cmake -G "Visual Studio 17 2022" -A x64 -B build # Linux / macOS cmake -DCMAKE_BUILD_TYPE=Release -B build @@ -73,8 +73,8 @@ cmake -DCMAKE_BUILD_TYPE=Release -B build ```shell # Windows MSVC 需要在构建阶段指定 --config Release -cmake --build build --target all -j 8 --config Release +cmake --build build -j 8 --config Release # Windows MinGW / Linux / macOS -cmake --build build --target all -j 8 +cmake --build build -j 8 ```