mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 20:17:13 +02:00
After making no progress on this for a very long time, let's acknowledge it's not going anywhere and remove it from the codebase.
21 lines
514 B
CMake
21 lines
514 B
CMake
set(SOURCES
|
|
BlockAllocator.cpp
|
|
Cell.cpp
|
|
CellAllocator.cpp
|
|
ConservativeVector.cpp
|
|
Root.cpp
|
|
RootHashMap.cpp
|
|
RootVector.cpp
|
|
Heap.cpp
|
|
HeapBlock.cpp
|
|
WeakBlock.cpp
|
|
WeakContainer.cpp
|
|
)
|
|
|
|
ladybird_lib(LibGC gc EXPLICIT_SYMBOL_EXPORT)
|
|
target_link_libraries(LibGC PRIVATE LibCore)
|
|
|
|
# TODO: Use lagom_generate_export_header and annotate entire LibGC with export macros
|
|
include(GenerateExportHeader)
|
|
generate_export_header(LibGC EXPORT_MACRO_NAME GC_API EXPORT_FILE_NAME "Export.h")
|