Conway's game of life written in C++ using SDL2 and imgui
-
Requirements
- Git
- CMake
- C++ Compiler
-
Steps
# Clone this project along with submodules $ git clone --recursive https://github.com/AbhayJoshi-Dev/Cellular-Automaton # Go to project directory $ cd Cellular-Automaton # Pull SDL and SDL_image as submodule (if you cloned without --recursive flag) $ git submodule update --init # Create a folder for build $ mkdir build # Go to build folder $ cd build # Generate project files $ cmake ..
-
This will generate project files using default cmake generator for your platform. For example:
- on
Windows
withVisual Studio
installed, it will generate a.sln
- on
Linux
withmake
installed, it will generate aMakefile
- on
Mac
withxcode
installed, it will generate a.xcodeproj
- on