ladybird/Userland/Libraries/LibCoredump/CMakeLists.txt
Dan Klishch 7b88363490 Meta+Userland: Make LibELF a proper library on Serenity
Dynamically loaded LibC doesn't need LibELF definitions, so let's not
put them there.
2024-04-26 19:08:13 -06:00

9 lines
194 B
CMake

set(SOURCES
Backtrace.cpp
Inspector.cpp
Reader.cpp
)
serenity_lib(LibCoredump coredump)
target_link_libraries(LibCoredump PRIVATE LibCompress LibCore LibDebug LibELF LibFileSystem)