adventofcode2021/day2/CMakeLists.txt
2021-12-02 14:43:30 +00:00

9 lines
221 B
CMake

# set the project name
project(d2p1)
file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/input
DESTINATION ${CMAKE_CURRENT_BINARY_DIR})
# add the executable
add_executable(d2p1 part1/main.cpp)
add_executable(d2p2 part2/main.cpp)