serenity/Userland/Applications/Magnifier/CMakeLists.txt
TheGrizzlyDev 2905642550 Magnifier: Add colorblind preview options
Add the same preview options as the theme editor so you can test the
accessibility of anything on your desktop. Both tools share the same
shortcuts.
2021-12-28 23:59:56 +01:00

14 lines
247 B
CMake

serenity_component(
Magnifier
RECOMMENDED
TARGETS Magnifier
)
set(SOURCES
MagnifierWidget.cpp
MagnifierWidget.h
main.cpp
)
serenity_app(Magnifier ICON app-magnifier)
target_link_libraries(Magnifier LibGfx LibGUI LibMain)