aoc24: add day16

This commit is contained in:
2024-12-16 16:43:34 +01:00
parent 1108b8c65b
commit 9c840a7c8f
15 changed files with 976 additions and 8 deletions

View File

@@ -16,6 +16,12 @@ FetchContent_Declare(
GIT_TAG v4.0.5
)
list(APPEND FETCH_CONTENTS utf8cpp)
FetchContent_Declare(
asio
GIT_REPOSITORY https://github.com/mononerv/asio.git
GIT_TAG bcb8a933b27021d77f2d183991d815ea6c8cdc97
)
list(APPEND FETCH_CONTENTS asio)
FetchContent_Declare(
stb
GIT_REPOSITORY https://github.com/mononerv/stb.git
@@ -112,6 +118,7 @@ target_link_libraries(aoclib
ctre
stb::stb
Threads::Threads
asio::asio
)
source_group(TREE "${CMAKE_CURRENT_LIST_DIR}" FILES ${HEADERS} ${SOURCES})