mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 12:55:07 +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.
15 lines
330 B
CMake
15 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)
|