aocpp/2022/CMakeLists.txt
2023-04-06 20:58:54 -07:00

54 lines
1.4 KiB
CMake

add_executable(2022_01 01.cpp)
target_link_libraries(2022_01 aocpp)
add_executable(2022_02 02.cpp)
target_link_libraries(2022_02 aocpp)
add_executable(2022_03 03.cpp)
target_link_libraries(2022_03 aocpp Boost::headers)
add_executable(2022_04 04.cpp)
target_link_libraries(2022_04 aocpp)
add_executable(2022_06 06.cpp)
target_link_libraries(2022_06 aocpp Boost::headers)
add_executable(2022_08 08.cpp)
target_link_libraries(2022_08 aocpp)
add_executable(2022_09 09.cpp)
target_link_libraries(2022_09 aocpp)
add_executable(2022_10 10.cpp)
target_link_libraries(2022_10 aocpp)
add_executable(2022_11 11.cpp)
target_link_libraries(2022_11 aocpp Boost::headers)
add_executable(2022_12 12.cpp)
target_link_libraries(2022_12 aocpp)
add_executable(2022_13 13.cpp)
target_link_libraries(2022_13 aocpp Boost::headers)
add_executable(2022_14 14.cpp)
target_link_libraries(2022_14 aocpp Boost::headers)
add_executable(2022_15 15.cpp)
target_link_libraries(2022_15 aocpp Boost::headers)
add_executable(2022_16 16.cpp)
target_link_libraries(2022_16 aocpp Boost::headers)
add_executable(2022_18 18.cpp)
target_link_libraries(2022_18 aocpp)
add_executable(2022_20 20.cpp)
target_link_libraries(2022_20 aocpp Boost::headers)
add_executable(2022_21 21.cpp)
target_link_libraries(2022_21 aocpp Boost::headers PkgConfig::Z3)
add_executable(2022_25 25.cpp)
target_link_libraries(2022_25 aocpp)