From 7210cd7556f6fb41a0e4d2d8defd8587d06010ea Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Tue, 21 Jan 2020 21:56:48 -0800 Subject: [PATCH 1/3] Add vcpkg installation instructions --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index c543d25f..1a8f63c5 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,17 @@ available for all supported compilers. See the [compilation guide](http://www.glfw.org/docs/latest/compile.html) for more information about how to compile GLFW yourself. +# Package Managers + +You can download and install glfw using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager: + + git clone https://github.com/Microsoft/vcpkg.git + cd vcpkg + ./bootstrap-vcpkg.sh + ./vcpkg integrate install + ./vcpkg install glfw + +The glfw port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository. ## Using GLFW From 4d9ee64f9376ac800187ea76f5241e66babf4cc4 Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Tue, 21 Jan 2020 21:59:07 -0800 Subject: [PATCH 2/3] Modify title font --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a8f63c5..41baf8a2 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ available for all supported compilers. See the [compilation guide](http://www.glfw.org/docs/latest/compile.html) for more information about how to compile GLFW yourself. -# Package Managers +## Package Managers You can download and install glfw using the [vcpkg](https://github.com/Microsoft/vcpkg) dependency manager: From d523db588353f926ea3fe0efc1e3b58f22d6a74d Mon Sep 17 00:00:00 2001 From: JackBoosY Date: Wed, 22 Jan 2020 19:03:15 -0800 Subject: [PATCH 3/3] fix command --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 41baf8a2..5dd3eb1e 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ You can download and install glfw using the [vcpkg](https://github.com/Microsoft cd vcpkg ./bootstrap-vcpkg.sh ./vcpkg integrate install - ./vcpkg install glfw + ./vcpkg install glfw3 The glfw port in vcpkg is kept up to date by Microsoft team members and community contributors. If the version is out of date, please [create an issue or pull request](https://github.com/Microsoft/vcpkg) on the vcpkg repository.