ladybird/Tests/LibGC/CMakeLists.txt
Ali Mohammad Pur 76f17f7703 LibGC: Add support for coordinated multi-heap collection
Allow having separate GC heaps and implement coordinated marking between
them; this is useful for keeping wasm and js GC heaps separated with a
clear boundary.
2026-06-19 17:01:47 +02:00

10 lines
219 B
CMake

set(TEST_SOURCES
TestGCContainers.cpp
TestGCHeapGroup.cpp
TestGCIdleCollection.cpp
TestGCVisitor.cpp
)
foreach(source IN LISTS TEST_SOURCES)
ladybird_test("${source}" LibGC LIBS LibGC)
endforeach()