AdventOfCode/2019/CMakeLists.txt

10 lines
258 B
CMake
Raw Normal View History

cmake_minimum_required(VERSION 3.0)
project(aoc2019 LANGUAGES C)
2019-12-05 19:28:42 +00:00
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)