Merge branch 'stek29/macos' (#56)

macOS specific README changes
This commit is contained in:
Romain Vimont 2018-03-25 14:31:02 +02:00
commit 8b84492830

View file

@ -125,13 +125,16 @@ Use [Homebrew] to install the packages:
brew install sdl2 ffmpeg brew install sdl2 ffmpeg
# client build dependencies # client build dependencies
brew install gcc pkg-config meson brew install pkg-config meson
``` ```
Java (>= 7) is not available in Homebrew, so if you plan to build the server, Additionally, if you want to build the server, install Java 8 from Caskroom, and
install it manually and make it available from the `PATH`: make it avaliable from the `PATH`:
```bash ```bash
brew tap caskroom/versions
brew cask install java8
export JAVA_HOME="$(/usr/libexec/java_home --version 1.8)"
export PATH="$JAVA_HOME/bin:$PATH" export PATH="$JAVA_HOME/bin:$PATH"
``` ```