Rocco2300 / asteroids-clone

asteroid clone made with c++

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Asteroids clone

Overview

This is a small clone of the retro game asteroids.

I started making it with the purpose of learning to use SFML, get comfortable writing C++ code, and managing a 'larger' project.

Screenshots

Title_Screen Game

Dependecies

  • CMake 3.23
  • GCC 11.2 or equivalent

Build

  1. Clone the repo and deps
git clone --recurse-submodules https://github.com/Rocco2300/asteroids-clone.git
  1. Go to install dir and create build directory
cd asteroids-clone
mkdir build
  1. Build using CMake
cmake .. -G "MinGW Makefiles"
cmake --build . -- -j4 -O
  1. Run executable
./asteroids-clone

After the project is built, you will just have tu run the executable.

About

asteroid clone made with c++


Languages

Language:C++ 97.5%Language:CMake 2.3%Language:C 0.2%