An open API service indexing awesome lists of open source software.

https://github.com/sdslabs/gbemu

A GameBoy emulator in C++
https://github.com/sdslabs/gbemu

Last synced: 8 months ago
JSON representation

A GameBoy emulator in C++

Awesome Lists containing this project

README

          

# Dependencies
## SDL
### MacOS
`brew install sdl2`
### Linux
`sudo apt install libsdl2-dev`

### Windows
Download the development pack `SDL2-devel-2.0.5-VC.zip` from [here](https://github.com/libsdl-org/SDL/releases/tag/release-2.26.2)

Or use winget or choco

# Build
## Release
```
git submodule update --init --recursive
mkdir build && cd build
cmake -DDEBUG=off ..
cmake --build . -j8
```

## Debug
```
git submodule update --init --recursive
mkdir build && cd build
cmake -DDEBUG=on ..
cmake --build . -j8
```

After this run the binary gbemu in the build folder.