cmake_minimum_required(VERSION 3.20) project(aoc_2021 C) set(CMAKE_C_STANDARD 99) add_executable(aoc_2021 src/main.c src/day_1.c src/day.h)