utilitiec/tests/CMakeLists.txt

64 lines
1.1 KiB
CMake
Raw Normal View History

2024-06-13 15:28:21 +02:00
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
)
add_executable(BinaryTree-test BinaryTree.test.c)
target_link_libraries(BinaryTree-test
BinaryTree
dynamicarray
pointers
allocator-interface
)
2024-09-22 22:26:33 +02:00
add_executable(Subprocess-test Subprocess.test.c)
target_link_libraries(Subprocess-test
Subprocess
threading
pointers
allocator-interface
)
2025-02-28 17:50:36 +01:00
add_executable(QuadTree-test QuadTree.test.c)
target_link_libraries(QuadTree-test
QuadTree
2025-02-28 23:07:49 +01:00
m
2025-02-28 17:50:36 +01:00
rand
pointers
allocator-interface
)