Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 871 Bytes

README.md

File metadata and controls

38 lines (29 loc) · 871 Bytes

GameOfLife v1.0

Author: ChrisDeadman

Simple implementation of Conway's Game of Life in C++11.

Dependencies

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

Compiling

  • cd GameOfLife
  • mkdir build
  • cd build
  • cmake ../ (or cmake ../ -Dtest=ON to include tests)
  • make

Running

  • cd GameOfLife
  • cd build
  • run application: src/main/gameOfLife
  • run tests: src/test/gameOfLife_test

Tested Operating Systems

  • Linux (tested on Ubuntu 17.10)

3rd party credits

Release notes

GameOfLife v1.0

  • Initial release