serenity/Userland/Applications/ImageViewer/CMakeLists.txt
Cubic Love 41d5fa2b07 Base+ImageViewer: Restore correct app icon
Restore ImageViewer's new application icon, which was accidentally
changed back to using the filetype icon by e800605.
Additionally, use the correct icon in the ImageViewer manpage.
2024-03-28 22:32:03 -04:00

16 lines
375 B
CMake

serenity_component(
ImageViewer
RECOMMENDED
TARGETS ImageViewer
DEPENDS ImageDecoder
)
set(SOURCES
main.cpp
MainWidget.cpp
ViewWidget.cpp
)
serenity_app(ImageViewer ICON app-image-viewer)
target_link_libraries(ImageViewer PRIVATE LibCore LibDesktop LibFileSystemAccessClient LibGUI LibGfx LibConfig LibImageDecoderClient LibMain LibURL)