userspace: Implement ImageViewer utility

This supports viewing images and doing basic zooming and panning
This commit is contained in:
2025-11-17 20:58:12 +02:00
parent 7ce8e610f5
commit b8a2573bb4
3 changed files with 193 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
set(SOURCES
main.cpp
)
add_executable(ImageViewer ${SOURCES})
banan_link_library(ImageViewer ban)
banan_link_library(ImageViewer libc)
banan_link_library(ImageViewer libgui)
banan_link_library(ImageViewer libimage)
install(TARGETS ImageViewer OPTIONAL)