1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-10-31 12:22:44 +00:00
serenity/Userland/Applications/Magnifier/CMakeLists.txt
Marcus Nilsson c91eebfbaa Magnifier: Use LibMain
Use the new serenity_main construct and TRY in Magnifier.
2021-11-28 10:10:35 -08:00

14 lines
240 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 LibMain)