cmake_minimum_required(VERSION 3.10) project(conway) add_executable(conway conway.c) target_compile_options(conway PUBLIC -ggdb -O0 -Wall)