Initial commit, yay

This commit is contained in:
VegOwOtenks 2024-06-13 15:28:21 +02:00
commit 25e26756cd
85 changed files with 7077 additions and 0 deletions

38
tests/CMakeLists.txt Normal file
View file

@ -0,0 +1,38 @@
add_executable(threadpool-test ThreadPool.test.c)
target_link_libraries(threadpool-test
ThreadPool
allocator-interface
FreeList
dynamicarray
threading
pointers)
add_executable(argumentc-test argumentc.test.c)
target_link_libraries(argumentc-test
argumentc
dynamicarray
allocator-interface
pointers
StringView)
add_executable(StringView-test StringView.test.c)
target_link_libraries(StringView-test
StringView)
add_executable(Scratchpad-test Scratchpad.test.c)
target_link_libraries(Scratchpad-test
Scratchpad
allocator-interface
pointers)
add_executable(regex-test regex.test.c)
target_link_libraries(regex-test
regex
Scratchpad
dynamicarray
allocator-interface
pointers
StringView
utf8
)