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