Skip to content

Latest commit

 

History

History
31 lines (26 loc) · 526 Bytes

File metadata and controls

31 lines (26 loc) · 526 Bytes

Dinozaver

Clone of the Chrome's dinosaur jumping game

Installation and building

Make sure you have SFML installed, as well as necessary build tools.

sudo apt-get install libsfml-dev cmake

Clone the repository.

git clone git@github.com:KrozekGimVic/dinozaver.git

Go into the cloned folder and build the application.

cd dinozaver
mkdir -p build
cd build
cmake ..
make

After building, run

./dinozaver

to play.

To recompile, simply go back to the build/ folder and run make.

Jure Slak