mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
The user can now navigate to the previous and next image using the left and right arrow keys respectively. These shortcuts were previously not working.
16 lines
330 B
CMake
16 lines
330 B
CMake
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 LibGUI LibGfx LibImageDecoderClient LibMain)
|