Skip to content
This repository has been archived by the owner on Jul 19, 2021. It is now read-only.

LostInTheCloud/WorkingTitle

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WorkingTitle

Dot Matrix Game Emulator

Requirements:

Ubuntu

sudo apt-get update

Arch

sudo pacman -Syu

SDL2:

Ubuntu:

sudo apt-get install libsdl2-dev -y

Arch

sudo pacman -S sdl2 --noconfirm

Clang/Clang++ (gcc/g++ works too):

Ubuntu

sudo apt-get install clang clang++ -y

Arch

sudo pacman -S clang clang++ --noconfirm

CMake:

Ubuntu

sudo apt-get install cmake -y

Arch

sudo pacman -S cmake --noconfirm

To Compile and Run (Debug):

cmake -DCMAKE_BUILD_TYPE=Debug .
make
./WorkingTitle <CARTRIDGE_PATH>

To Compile and Run (Release):

cmake .
make
./WorkingTitle <CARTRIDGE_PATH>

Try this out:

cmake . 
make
./WorkingTitle ./thirdparty/bgbtest.gb