cmake_minimum_required(VERSION 3.10)

set(CMAKE_C_STANDARD 99)

# set the project name
project(zombiemaster VERSION 0.1.0 LANGUAGES C)

add_executable(zombiemaster zombiemaster.c)
