1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 22:18:11 +00:00
serenity/Userland/Applications/Magnifier/CMakeLists.txt
Valtteri Koskivuori 4d01183f5c Userland: Implement a magnifier app
This utility is useful for making sure those UI elements are pixel
perfect. A simple 2x/4x magnification around the mouse cursor, shown in
a window.
2021-05-11 10:18:29 +01:00

8 lines
148 B
CMake

set(SOURCES
MagnifierWidget.cpp
MagnifierWidget.h
main.cpp
)
serenity_app(Magnifier ICON find)
target_link_libraries(Magnifier LibGUI)