mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 08:34:57 +00:00
15 lines
368 B
CMake
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)
|