mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 07:29:53 +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)
|