]> O.S.I.I.S - jp/vkvg.git/commitdiff
update windows doc
authorJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Mon, 15 Nov 2021 16:39:30 +0000 (17:39 +0100)
committerJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Mon, 15 Nov 2021 16:39:30 +0000 (17:39 +0100)
.gitignore
doc/windows_build_tutorial.md

index d2c2c5fe5bddc8731b5e44e87c24819e20cafc19..48cac0c7baf08adfedbc35170f6715207a6c5c69 100644 (file)
@@ -4,4 +4,4 @@ ignore
 .vs/
 *.json
 log-*.txt
-doc/
\ No newline at end of file
+docs/
index b0cfaa0ec23a265985bd89d80ef99a8ab2171c80..943c759cb834eced5d705a4fd7ab1ebb33238881 100644 (file)
@@ -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