From 30d0f068900ddf8e14d2a427784984eaa4474c62 Mon Sep 17 00:00:00 2001 From: benda Date: Wed, 22 Dec 2021 12:32:48 -0600 Subject: [PATCH] Doc: use only double quotes for cmake command line example in COMPILING.md (#9758) While powershell happily accepts single quotes, it's not the case for cmd. --- COMPILING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/COMPILING.md b/COMPILING.md index 06f54262e4..ba910ed6df 100644 --- a/COMPILING.md +++ b/COMPILING.md @@ -69,7 +69,7 @@ that comes with vcpkg. After that, you can run something similar to this: ```powershell mkdir build cd build -cmake.exe .. -G'Visual Studio 16 2019' -DCMAKE_TOOLCHAIN_FILE="\vcpkg\scripts\buildsystems\vcpkg.cmake" -DVCPKG_TARGET_TRIPLET="x64-windows-static" +cmake.exe .. -G"Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE="\vcpkg\scripts\buildsystems\vcpkg.cmake" -DVCPKG_TARGET_TRIPLET="x64-windows-static" ``` Change `` to where you have installed vcpkg. After this