summaryrefslogtreecommitdiff
path: root/COMPILING.md
diff options
context:
space:
mode:
authorbenda <benda1@gmail.com>2021-12-22 12:32:48 -0600
committerGitHub <noreply@github.com>2021-12-22 19:32:48 +0100
commit30d0f068900ddf8e14d2a427784984eaa4474c62 (patch)
tree2bb2253eee659fac7d6480b7b10cca48faade402 /COMPILING.md
parentf6e6b2c91730e24c68941ca99442458e43e2075f (diff)
downloadopenttd-30d0f068900ddf8e14d2a427784984eaa4474c62.tar.xz
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.
Diffstat (limited to 'COMPILING.md')
-rw-r--r--COMPILING.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/COMPILING.md b/COMPILING.md
index 06f54262e..ba910ed6d 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="<location of vcpkg>\vcpkg\scripts\buildsystems\vcpkg.cmake" -DVCPKG_TARGET_TRIPLET="x64-windows-static"
+cmake.exe .. -G"Visual Studio 16 2019" -DCMAKE_TOOLCHAIN_FILE="<location of vcpkg>\vcpkg\scripts\buildsystems\vcpkg.cmake" -DVCPKG_TARGET_TRIPLET="x64-windows-static"
```
Change `<location of vcpkg>` to where you have installed vcpkg. After this