summaryrefslogtreecommitdiff
path: root/Userland/Applications/CrashReporter/CMakeLists.txt
blob: 12bab1e8f579683891d064adc3b616fbc032046e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
serenity_component(
    CrashReporter
    REQUIRED
    TARGETS CrashReporter
)

compile_gml(CrashReporterWindow.gml CrashReporterWindowGML.h crash_reporter_window_gml)


set(SOURCES
    main.cpp
)

set(GENERATED_SOURCES
    CrashReporterWindowGML.h
)

serenity_app(CrashReporter ICON app-crash-reporter)
target_link_libraries(CrashReporter PRIVATE LibCore LibCoredump LibDebug LibDesktop LibFileSystemAccessClient LibGfx LibGUI LibMain LibThreading)