mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 01:20:25 +00:00
7b88363490
Dynamically loaded LibC doesn't need LibELF definitions, so let's not put them there.
16 lines
431 B
CMake
16 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)
|