ladybird/Userland/Libraries/LibCoredump/CMakeLists.txt
Linus Groh 643faa1144 Everywhere: Fix two inconsistent serenity_lib() output names
- No underscores between word boundaries, i.e. `languageserver` and not
  `language_server` for LibLanguageServer
- All lowercase, i.e. `coredump` and not `Coredump` for LibCoredump
2022-07-03 22:59:13 +02:00

9 lines
170 B
CMake

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