24 lines
551 B
CMake
24 lines
551 B
CMake
add_executable(2022_01 01.cpp)
|
|
target_link_libraries(2022_01 aocpp)
|
|
|
|
add_executable(2022_03 03.cpp)
|
|
target_link_libraries(2022_03 aocpp)
|
|
|
|
add_executable(2022_04 04.cpp)
|
|
target_link_libraries(2022_04 aocpp)
|
|
|
|
add_executable(2022_12 12.cpp)
|
|
target_link_libraries(2022_12 aocpp)
|
|
|
|
add_executable(2022_13 13.cpp)
|
|
target_link_libraries(2022_13 aocpp)
|
|
|
|
add_executable(2022_18 18.cpp)
|
|
target_link_libraries(2022_18 aocpp)
|
|
|
|
add_executable(2022_20 20.cpp)
|
|
target_link_libraries(2022_20 aocpp)
|
|
|
|
add_executable(2022_25 25.cpp)
|
|
target_link_libraries(2022_25 aocpp)
|