summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorRay <[email protected]>2020-03-30 13:23:20 +0200
committerGitHub <[email protected]>2020-03-30 13:23:20 +0200
commitc47ba58494c1320c7d5d0f4f54dbed69c9ff213b (patch)
tree7df8436b075f0f55ed61f4caf0a43deb4cb3214b /README.md
parent41582f04482a986acf16f3675da054e436f463ec (diff)
downloadraylib-c47ba58494c1320c7d5d0f4f54dbed69c9ff213b.tar.gz
raylib-c47ba58494c1320c7d5d0f4f54dbed69c9ff213b.zip
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r--README.md32
1 files changed, 30 insertions, 2 deletions
diff --git a/README.md b/README.md
index cb2c2912..d100ac15 100644
--- a/README.md
+++ b/README.md
@@ -61,12 +61,40 @@ raylib uses internally several single-file header-only libraries to support diff
build and installation
----------------------
-raylib binary releases for Windows, Linux and macOS are available at the [Github Releases page](https://github.com/raysan5/raylib/releases). raylib is also available via multiple [package managers](https://github.com/raysan5/raylib/issues/613) on multiple OS distributions.
+raylib binary releases for Windows, Linux and macOS are available at the [Github Releases page](https://github.com/raysan5/raylib/releases).
-raylib has been developed on Windows platform using Notepad++ and MinGW GCC compiler but it can be used with multiple IDEs on multiple platforms, [projects directory](https://github.com/raysan5/raylib/tree/master/projects) contains several ready-to-use project templates to build raylib and code examples.
+raylib is also available via multiple [package managers](https://github.com/raysan5/raylib/issues/613) on multiple OS distributions.
+
+#### Installing and building raylib via vcpkg
+
+You can download and install raylib 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 raylib
+
+The raylib 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.
+
+#### Building and using raylib on multiple platforms
[raylib Wiki](https://github.com/raysan5/raylib/wiki#development-platforms) contains detailed instructions on building and usage on multiple platforms.
+* [Working on Windows](https://github.com/raysan5/raylib/wiki/Working-on-Windows)
+* [Working on macOS](https://github.com/raysan5/raylib/wiki/Working-on-macOS)
+* [Working on GNU Linux](https://github.com/raysan5/raylib/wiki/Working-on-GNU-Linux)
+* [Working on FreeBSD](https://github.com/raysan5/raylib/wiki/Working-on-FreeBSD)
+* [Working on Raspberry Pi](https://github.com/raysan5/raylib/wiki/Working-on-Raspberry-Pi)
+* [Working for Android](https://github.com/raysan5/raylib/wiki/Working-for-Android)
+* [Working for Web (HTML5)](https://github.com/raysan5/raylib/wiki/Working-for-Web-(HTML5))
+* [Working for UWP (Universal Window Platform)](https://github.com/raysan5/raylib/wiki/Working-for-UWP)
+* [Working anywhere with CMake](https://github.com/raysan5/raylib/wiki/Working-with-CMake)
+
+#### Using raylib with multiple IDEs
+
+raylib has been developed on Windows platform using [Notepad++](https://notepad-plus-plus.org/) and [MinGW GCC](http://mingw-w64.org/doku.php) compiler but it can be used with multiple IDEs on multiple platforms, [projects directory](https://github.com/raysan5/raylib/tree/master/projects) contains several ready-to-use project templates to build raylib and code examples.
+
contact
-------