Add note about pkg-config in macOS setup (#198)

This commit is contained in:
Francisco Vallarino 2022-08-03 21:16:41 -03:00 committed by GitHub
parent d080022da5
commit 5852155b72
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,14 +18,22 @@ git clone https://github.com/fjvallarino/monomer-starter.git <your-app-name>
### macOS
In case you don't have Homebrew installed, visit [Homebrew](https://brew.sh)
In case you don't have Homebrew installed, visit [Homebrew](https://brew.sh).
```bash
brew install sdl2
brew install glew
```
#### Notes
#### Notes: pkg-config
You may need to install `pkg-config`, in case it was not previously installed:
```bash
brew install pkg-config
```
#### Notes: M1
The standard build process currently fails on M1 Macs. This issue should be
fixed when support for `GHC 9.2` is added to `stack`, since that version of GHC
@ -65,7 +73,8 @@ pacman -S glew
#### Fedora
```bash
sudo dnf install SDL2-devel glew-devel
sudo dnf install SDL2-devel
sudo dnf install glew-devel
```
### Windows