1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-29 04:57:44 +00:00

CrashReporter: Port CrashReporter to GML Compiler

This commit is contained in:
Mr.UNIX 2023-12-26 19:16:14 +01:00 committed by Andrew Kaster
parent 4cb2ff1428
commit 44d623d588
4 changed files with 30 additions and 9 deletions

View file

@ -4,16 +4,13 @@ serenity_component(
TARGETS CrashReporter
)
stringify_gml(CrashReporterWindow.gml CrashReporterWindowGML.h crash_reporter_window_gml)
compile_gml(CrashReporterWindow.gml CrashReporterWindowGML.cpp)
set(SOURCES
CrashReporterWindowGML.cpp
main.cpp
)
set(GENERATED_SOURCES
CrashReporterWindowGML.h
)
serenity_app(CrashReporter ICON app-crash-reporter)
target_link_libraries(CrashReporter PRIVATE LibCore LibCoredump LibDebug LibDesktop LibFileSystem LibFileSystemAccessClient LibGfx LibGUI LibMain LibThreading)