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.
- Host: GitHub
- URL: https://github.com/davidjcottrell/gol
- Owner: DavidJCottrell
- Created: 2024-01-17T13:53:01.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-01-21T22:40:46.000Z (4 months ago)
- Last Synced: 2025-02-08T12:46:16.981Z (3 months ago)
- Topics: cmake, sdl2, sdl2-image
- Language: C++
- Homepage:
- Size: 1.26 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 .`