ladybird/Userland/Applications/Magnifier/CMakeLists.txt
Andreas Kling 3368e54224 Magnifier: Make a custom 16x16 icon for this app + tweak 32x32 version
Stop piggybacking on the generic "find" icon and make a custom one. :^)
2021-07-04 23:15:17 +02:00

15 lines
232 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 LibGUI)