An open API service indexing awesome lists of open source software.

https://github.com/davidjcottrell/gol

Conway's Game of Life using C++ and SDL2.
https://github.com/davidjcottrell/gol

cmake sdl2 sdl2-image

Last synced: about 2 months ago
JSON representation

Conway's Game of Life using C++ and SDL2.

Awesome Lists containing this project

README

        

## Conway's Game of Life

## Create the build directory

`mkdir build && cd build`

## Install dependencies with conan

`conan install .. --build=missing --output-folder=.`

## Generate build files

`cmake .. -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=Release`

## Build

`cmake --build .`