/Space-invaders

Remake of the original Space Invaders game.

Primary LanguageC++GNU General Public License v3.0GPL-3.0

Space-invaders

Remake of the original Space Invaders game.

Here's the video explaining how I did it: https://youtu.be/WfYNelQiQvc

Compile instructions

  • If you're using Visual Studio: Visual studio can handle CMakeFiles automatically: see this link
  • If you're on Linux:
    1. Install SFML:

      • Debian/Ubuntu: sudo apt-get install libsfml-dev
      • Arch Linux and derivatives: sudo pacman -S sfml
    2. Compile the project:

      In the root folder:

      mkdir build && cd build
      cmake ..
      make
      
    You should now have an executable file called invaders which you can run