From 5845a4b29c1ff360dc294bb66d4a6d5d310a299c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Jean-Philippe=20Bruy=C3=A8re?= Date: Mon, 15 Nov 2021 17:39:30 +0100 Subject: [PATCH] update windows doc --- .gitignore | 2 +- doc/windows_build_tutorial.md | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index d2c2c5f..48cac0c 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,4 @@ ignore .vs/ *.json log-*.txt -doc/ \ No newline at end of file +docs/ diff --git a/doc/windows_build_tutorial.md b/doc/windows_build_tutorial.md index b0cfaa0..943c759 100644 --- a/doc/windows_build_tutorial.md +++ b/doc/windows_build_tutorial.md @@ -14,23 +14,23 @@ Make sure that [Git](https://git-scm.com/download/win) is installed on your mach git version 2.19.1.windows.1 ``` Install [vcpkg package manager](https://docs.microsoft.com/en-us/cpp/build/vcpkg?view=vs-2019) to build required libraries: -```bash +```bash git clone https://github.com/Microsoft/vcpkg.git cd vcpkg .\bootstrap-vcpkg.bat ``` Then install the libraries required by vkvg, use the triplet corresponding with your architecture: -```bash -vcpkg install fontconfig:x64-window freetype:x64-window harfbuzz:x64-window +```bash +vcpkg install fontconfig:x64-windows freetype:x64-windows harfbuzz:x64-windows ``` Optionaly, install [GLFW] to build the samples: -```bash -vcpkg install glfw:x64-window +```bash +vcpkg install glfw3:x64-windows ``` Add the path to the shared libraries binaries to your **PATH** environment variable, they are in %vcpkg-root%/installed/x64-windows/bin/. To make those libraries available for vsstudio use the [system wide integration](https://vcpkg.readthedocs.io/en/latest/examples/installing-and-using-packages/#vsmsbuild-project-user-wide-integration) from vcpkg. -```bash +```bash vcpkg integrate install ``` #### CMake configuration -- 2.47.3