addition: Base for implementation

This commit is contained in:
2026-05-06 11:29:28 -06:00
parent 574bd1bc13
commit 0241829777
5 changed files with 48 additions and 1 deletions

View File

@@ -11,6 +11,14 @@ set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
option(GRAPH_BUILD_TESTS "Build arraylist tests" OFF)
option(GRAPH_ENABLE_SANITIZERS "Enable sanitizers for tests" ON)
include(cmake/CPM.cmake)
CPMAddPackage(
NAME arraylist
GIT_REPOSITORY https://laentropia-homelab.tail7368da.ts.net/laentropia/ArrayList.git
GIT_TAG main
)
# ------------------------
# Library
# ------------------------
@@ -39,6 +47,10 @@ target_link_libraries(graph_example
graph
)
target_link_libraries(graph
PUBLIC arraylist
)
# ------------------------
# Testing
# ------------------------