1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:34:57 +00:00
serenity/Userland/Applications/ImageViewer/CMakeLists.txt
Cubic Love 3bec616893 Base+ImageViewer: Add new icons for ImageViewer
Add ImageViewer application icons (16 and 32px) and matching image
filetype icons.
2024-03-12 08:08:19 +00:00

15 lines
368 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)