A clone of Space Invaders written in C++ with SDL2
-
Requirements
- Git
- CMake
- C++ Compiler
-
Steps
# Clone this project along with submodules git clone --recursive https://github.com/AbhayJoshi-Dev/Space-Invaders # Go to project root cd Space-Invaders # Create a folder for build mkdir build # Go to build folder cd build # Generate project files cmake .. # add -DBUILD_SHARED_LIBS=OFF to link statically # Build project cmake --build .