Added git installation instruction to dependencies
This commit is contained in:
parent
512e811d3a
commit
ea8aca10d3
@ -8,8 +8,29 @@ To do anything of value in the later versions of macOS, you're going to need the
|
|||||||
$ xcode-select --install
|
$ xcode-select --install
|
||||||
```
|
```
|
||||||
|
|
||||||
|
After installing the package, you should have Git (among other things) installed. You can verify this by running:
|
||||||
|
```console
|
||||||
|
$ git --version
|
||||||
|
git version 2.27.0
|
||||||
|
```
|
||||||
|
|
||||||
## Linux
|
## Linux
|
||||||
|
|
||||||
|
### Installing Git
|
||||||
|
For the project build system to function correctly, you will need to have Git installed on your system if it isn't already (it's a good idea to have it anyway - take it from us). You can install it by running the following lines:
|
||||||
|
|
||||||
|
#### Debian/Ubuntu
|
||||||
|
```console
|
||||||
|
$ sudo apt update
|
||||||
|
$ sudo apt install git-all
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Fedora
|
||||||
|
```console
|
||||||
|
$ sudo dnf check-update
|
||||||
|
$ sudo dnf install git-all
|
||||||
|
```
|
||||||
|
|
||||||
### Installing G++ & Make
|
### Installing G++ & Make
|
||||||
Some Linux distributions do not come preinstalled with the basic build tools required to do C/C++ development. In the case that you do not have them and you're on a Debian-based system, you can install them all with one very handy meta-package aptly named `build-essential`. Otherwise if you're using Fedora, you can install them each individually. Run the following lines to install them:
|
Some Linux distributions do not come preinstalled with the basic build tools required to do C/C++ development. In the case that you do not have them and you're on a Debian-based system, you can install them all with one very handy meta-package aptly named `build-essential`. Otherwise if you're using Fedora, you can install them each individually. Run the following lines to install them:
|
||||||
|
|
||||||
@ -52,6 +73,9 @@ $ sudo dnf install alsa-lib-devel mesa-libGL-devel libX11-devel libXrandr-devel
|
|||||||
|
|
||||||
## Windows
|
## Windows
|
||||||
|
|
||||||
|
### Installing Git
|
||||||
|
For the project build system to function correctly, you will need to have Git installed on your system if it isn't already (it's a good idea to have it anyway - take it from us). You can install it by [downloading it from here](https://git-scm.com/download/win) and going through the setup wizard.
|
||||||
|
|
||||||
### Installing MinGW
|
### Installing MinGW
|
||||||
Building raylib libraries requires the installation of MinGW ([32](http://www.mingw.org/) and [64](http://mingw-w64.org/doku.php/download) bit versions). Please ensure that you link MinGW's `bin` directory to your system environment variables for BOTH the 32 and 64 bit versions. You can follow the instructions here for the [32-bit](https://www.youtube.com/watch?v=sXW2VLrQ3Bs) and here for the [64-bit](https://code.visualstudio.com/docs/cpp/config-mingw) bit versions.
|
Building raylib libraries requires the installation of MinGW ([32](http://www.mingw.org/) and [64](http://mingw-w64.org/doku.php/download) bit versions). Please ensure that you link MinGW's `bin` directory to your system environment variables for BOTH the 32 and 64 bit versions. You can follow the instructions here for the [32-bit](https://www.youtube.com/watch?v=sXW2VLrQ3Bs) and here for the [64-bit](https://code.visualstudio.com/docs/cpp/config-mingw) bit versions.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user