serenity/Userland/Applications/CrashReporter/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

17 lines
431 B
CMake

serenity_component(
CrashReporter
REQUIRED
TARGETS CrashReporter
)
compile_gml(CrashReporterWindow.gml CrashReporterWindowGML.cpp)
set(SOURCES
CrashReporterWindowGML.cpp
main.cpp
)
serenity_app(CrashReporter ICON app-crash-reporter)
target_link_libraries(CrashReporter PRIVATE LibCore LibCoredump LibDebug LibDesktop LibELF LibFileSystem LibFileSystemAccessClient LibGfx LibGUI LibMain LibThreading LibURL)