diff options
author | benda <benda1@gmail.com> | 2021-12-22 12:32:48 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-22 19:32:48 +0100 |
commit | 30d0f068900ddf8e14d2a427784984eaa4474c62 (patch) | |
tree | 2bb2253eee659fac7d6480b7b10cca48faade402 | |
parent | f6e6b2c91730e24c68941ca99442458e43e2075f (diff) | |
download | openttd-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.
-rw-r--r-- | COMPILING.md | 2 |
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 |