mirror of
https://github.com/digarok/gsplus.git
synced 2024-11-17 05:05:41 +00:00
26 lines
720 B
Plaintext
26 lines
720 B
Plaintext
# Mac OSX - SDL2 version
|
|
#
|
|
# This should build a `gsplus` executable and copy it to the project root dir.
|
|
# You can run it, though as always you need to supply an Apple IIgs ROM file.
|
|
# Have fun, and please note any errors on the issues page of the project.
|
|
|
|
|
|
# Prerequisite: You must install Xcode on your system from the App Store
|
|
|
|
# Also, install Xcode cli tools.
|
|
xcode-select --install
|
|
|
|
# Install 'brew'.
|
|
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
|
|
|
|
# Use brew to install dependencies.
|
|
brew install sdl2
|
|
brew install sdl2_image
|
|
brew install freetype
|
|
|
|
# Build.
|
|
git clone git@github.com:digarok/gsplus.git
|
|
cd gsplus/src
|
|
ln -s vars_osx_sdl2 vars
|
|
make clean ; make
|