Modern cross-platform Apple IIgs emulator and tools based on KEGS
Go to file
Dagen Brock 4805720545 Merge branch 'ksherlock-master' 2019-08-16 14:42:35 -05:00
assets add a simple deb packaging script to ci 2018-08-22 14:23:11 -05:00
doc fix macos dependencies 2019-07-28 16:08:38 -04:00
include cleanup headers a bit 2019-01-02 19:53:34 -05:00
lib latest osx artifact (and some cleaning) 2016-10-14 14:44:58 -05:00
src resolve conflicts 2019-08-16 14:41:29 -05:00
.gitattributes add .gitattributes for line ending cleanup 2016-10-28 08:51:49 -05:00
.gitignore using code beautifier (uncrustify), possibly most controversial commit ever\? 2018-08-13 12:22:40 -05:00
.gitlab-ci.yml gitlab-ci integration for cmake - all platforms 2019-05-11 09:10:08 -05:00
.travis.yml travis - need freetype. 2019-02-10 21:43:15 -05:00
CMakeLists.txt __USE_W32_SOCKETS 2019-02-20 13:46:06 -05:00
COPYRIGHT.txt copyright cleanup (and fix a copy-pasta) 2018-03-02 10:48:45 -06:00
LICENSE.txt Win32 SDL2 builds on Cygwin against Mingw SDL2 libs, new docs and log cleanup 2018-07-25 14:33:16 -05:00
README.md fix macos dependencies 2019-07-28 16:08:38 -04:00
appveyor.yml linux headless build, default the gui debugger to off 2019-03-13 20:14:04 -04:00
make_dist_mac.sh Win32 SDL2 builds on Cygwin against Mingw SDL2 libs, new docs and log cleanup 2018-07-25 14:33:16 -05:00
make_dmg_mac.sh Win32 SDL2 builds on Cygwin against Mingw SDL2 libs, new docs and log cleanup 2018-07-25 14:33:16 -05:00
mini-asm.md Create mini-asm.md 2019-05-09 11:08:36 -04:00

README.md

GS+

An Apple IIgs emulator based on KEGS

Build instructions

OS X dependencies

brew install cmake pkg-config re2c sdl2 sdl2_image freetype

Linux dependencies

apt-get install re2c libsdl2-dev libsdl2-image-dev libfreetype6-dev libpcap0.8-dev

WIN32 dependencies

Install MSYS2 (not MSYS, not cygwin)

32-bit build:

pacman  -S re2c mingw-w64-i686-cmake mingw-w64-i686-SDL2 mingw-w64-i686-SDL2_image mingw-w64-i686-freetype

64-bit build:

pacman  -S re2c mingw-w64-x86_64-cmake mingw-w64-x86_64-SDL2 mingw-w64-x86_64-SDL2_image mingw-w64-x86_64-freetype

Linux, OS X, build

mkdir build
cd build
cmake ..
(optionally: ccmake .. to configure stuff)
make

Windows Build

mingw SDL build

mkdir build
cd build
cmake ../ -DDRIVER=SDL2 -DWITH_DEBUGGER=OFF -G "MSYS Makefiles"
make GSplus.exe

mingw GDI build

mkdir build
cd build
cmake ../ -DDRIVER=WIN32 -DWITH_DEBUGGER=OFF -G "MSYS Makefiles"
make GSplus.exe