Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 685 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 685 Bytes

Space Invaders

A clone of Space Invaders written in C++ with SDL2

Demo

Build Instructions

  • 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 .