summaryrefslogtreecommitdiff
path: root/Userland/Applications/ImageViewer/CMakeLists.txt
blob: 717a88c95ed17c72461b84525dc67740f9640556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
serenity_component(
    ImageViewer
    RECOMMENDED
    TARGETS ImageViewer
    DEPENDS ImageDecoder
)

set(SOURCES
    main.cpp
        MainWidget.cpp
        ViewWidget.cpp
)

serenity_app(ImageViewer ICON filetype-image)
target_link_libraries(ImageViewer PRIVATE LibCore LibDesktop LibFileSystemAccessClient LibGUI LibGfx LibConfig LibImageDecoderClient LibMain)