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

compile_gml(CrashReporterWindow.gml CrashReporterWindowGML.h crash_reporter_window_gml)


set(SOURCES
    main.cpp
    CrashReporterWindowGML.h
)

serenity_app(CrashReporter ICON app-crash-reporter)
target_link_libraries(CrashReporter LibCore LibCoredump LibDesktop LibGUI LibMain)