Skip to content

Little game demo where you need to safely land a rocket

Notifications You must be signed in to change notification settings

morgunovmi/LunarLander

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

LunarLander

A little game demo where you have to land a rocket on the surface of the moon avoiding rough terrain.

sc

Playing

To play the game you can download the binary from the Releases page. Then you install it with

sudo dpkg -i ./LunarLander_version_num_architecture.deb
LunarLander

If you run into errors with GLIBCXX version, upgrade the libstdc++6 (note that you have to do it before installing the .deb package)

How to do on Ubuntu

sudo add-apt-repository ppa:ubuntu-toolchain-r/test
sudo apt update
sudo apt-get install --only-upgrade libstdc++6

Build

You need to have a compiler that supports the C++17 standard. For gcc it's version 8 or higher. You also need to have X11 development libraries installed.

These build instructions are for linux and assume you have CMake installed.

git clone https://github.com/morgunovmi/LunarLander.git
cd LunarLander
mkdir build-release
cd build-release
cmake -DCMAKE_BUILD_TYPE=Release ..
make
./LunarLander

About

Little game demo where you need to safely land a rocket

Resources

Stars

Watchers

Forks

Packages

No packages published