Files
advent-of-code-2023/CMakeLists.txt

11 lines
211 B
CMake

cmake_minimum_required(VERSION 3.26)
project(advent_of_code_2023 C)
set(CMAKE_C_STANDARD 11)
add_executable(advent_of_code_2023 main.c
main.h
day_1.c
array_list.c
array_list.h)