Author: ChrisDeadman
Simple implementation of Conway's Game of Life in C++11.
- cmake (
apt-get install cmake
) - libpthreads (
apt-get install libpthread-stubs0-dev
) - libsdl2 (
apt install libsdl2-dev libsdl2-ttf-dev
) - libgtest (downloaded and compiled automatically)
cd GameOfLife
mkdir build
cd build
cmake ../
(orcmake ../ -Dtest=ON
to include tests)make
cd GameOfLife
cd build
- run application:
src/main/gameOfLife
- run tests:
src/test/gameOfLife_test
- Linux (tested on Ubuntu 17.10)
- Initial release