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++
- Host: GitHub
- URL: https://github.com/sdslabs/gbemu
- Owner: sdslabs
- Created: 2022-08-04T14:05:46.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-08-28T07:06:40.000Z (almost 2 years ago)
- Last Synced: 2024-08-29T08:12:28.052Z (almost 2 years ago)
- Language: C++
- Size: 1.67 MB
- Stars: 5
- Watchers: 6
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
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.