]> O.S.I.I.S - jp/vkvg.git/commitdiff
Update windows_build_tutorial.md
authorJoão Oliveira <44142506+Joaopmoliveira@users.noreply.github.com>
Tue, 5 May 2020 08:48:06 +0000 (09:48 +0100)
committerGitHub <noreply@github.com>
Tue, 5 May 2020 08:48:06 +0000 (09:48 +0100)
doc/windows_build_tutorial.md

index 7a0903f97b5d76a08b99597a1f164669fa866446..a9f68ccac045b0c2606e9016b7f077b63deaa428 100644 (file)
@@ -14,9 +14,9 @@ If the output of such command is: <br>
 git version 2.19.1.windows.1\r
 ```\r
 \r
-Then you have git installed on your machine. If an error is given, then install git on your machine.<br> \r
+Then you have git installed on your machine. If an error is given, then [install git on your machine](https://git-scm.com/download/win).<br> \r
 \r
-2 - To install all the necessary libraries we first need to install the vcpkg package manager (the process can be done manually but it is easier this way) which allows one to link projects with a large array of libraries already developed in C\C++. The instalation of vcpkg is trivial, you just open a command line, and write <br>\r
+2 - To install all the necessary libraries we first need to install the [vcpkg package manager](https://docs.microsoft.com/en-us/cpp/build/vcpkg?view=vs-2019) (the process can be done manually but it is easier this way) which allows one to link projects with a large array of libraries already developed in C\C++. The instalation of vcpkg is trivial, you just open a command line, and write <br>\r
 ```bash\r
 > git clone https://github.com/Microsoft/vcpkg.git\r
 > cd vcpkg\r
@@ -24,18 +24,17 @@ Then you have git installed on your machine. If an error is given, then install
 ```\r
 3 - Now we have to install the dependencies for the vkvg library which are :<br> \r
 \r
-- CMake -> Used to define projects across several operating systems (OS)<br>\r
-- Vulkan -> The API to interact with the GPU to create images which you are already probabily familiar<br>\r
-- FontConfig -> The library used to find the configuration of the fonts from the OS<br>\r
-- Freetype -> Library used to render the fonts<br>\r
-- Harfbuzz -> Library used to shape the text .<br>\r
-- GLFW -> Library used to create a window independent from the underlying OS<br>\r
+- [CMake](https://cmake.org/) -> Used to define projects across several operating systems (OS)<br>\r
+- [Vulkan](https://www.khronos.org/vulkan/) -> The API to interact with the GPU to create images which you are already probabily familiar<br>\r
+- [FontConfig](https://www.freedesktop.org/wiki/Software/fontconfig/) -> The library used to find the configuration of the fonts from the OS<br>\r
+- [Freetype](https://www.freetype.org/) -> Library used to render the fonts<br>\r
+- [Harfbuzz](https://www.freedesktop.org/wiki/Software/HarfBuzz/) -> Library used to shape the text .<br>\r
+- [GLFW](http://www.glfw.org/) -> Library used to create a window independent from the underlying OS<br>\r
 \r
 To install all these libraries we can simply write (assuming you are still on vcpkg directory):<br>\r
 ```bash\r
 > vcpkg search vulkan\r
 ```\r
-\r
 To find if the library already has a port for the vcpkg packadge manager<br>\r
 \r
 4 - So now we know that the library is currently usable from the vcpkg program so we can now write:<br>\r