48 lines
1007 B
CMake
48 lines
1007 B
CMake
add_executable(01 01.cpp)
|
|
target_link_libraries(01 aocpp)
|
|
|
|
add_executable(02 02.cpp)
|
|
target_link_libraries(02 aocpp intcode)
|
|
|
|
add_executable(03 03.cpp)
|
|
target_link_libraries(03 aocpp)
|
|
|
|
add_executable(04 04.cpp)
|
|
target_link_libraries(04 aocpp)
|
|
|
|
add_executable(05 05.cpp)
|
|
target_link_libraries(05 aocpp intcode)
|
|
|
|
add_executable(06 06.cpp)
|
|
target_link_libraries(06 aocpp)
|
|
|
|
add_executable(07 07.cpp)
|
|
target_link_libraries(07 aocpp intcode)
|
|
|
|
add_executable(08 08.cpp)
|
|
target_link_libraries(08 aocpp)
|
|
|
|
add_executable(09 09.cpp)
|
|
target_link_libraries(09 aocpp intcode)
|
|
|
|
add_executable(11 11.cpp)
|
|
target_link_libraries(11 aocpp intcode)
|
|
|
|
add_executable(12 12.cpp)
|
|
target_link_libraries(12 aocpp)
|
|
|
|
add_executable(13 13.cpp)
|
|
target_link_libraries(13 aocpp intcode)
|
|
|
|
add_executable(14 14.cpp)
|
|
target_link_libraries(14 aocpp)
|
|
|
|
add_executable(15 15.cpp)
|
|
target_link_libraries(15 aocpp intcode)
|
|
|
|
add_executable(18 18.cpp)
|
|
target_link_libraries(18 aocpp)
|
|
|
|
add_executable(23 23.cpp)
|
|
target_link_libraries(23 aocpp intcode)
|