cmake_minimum_required(VERSION 3.0) project(aoc2019 LANGUAGES C) set(DAY 4) set(PART 1) add_executable(aoc2019 days/${DAY}/${PART}/main.c) #target_link_libraries(aoc2019 m) # If math.h is required, use this install(TARGETS aoc2019 RUNTIME DESTINATION bin)