ladybird/Userland/Applications/QuickShow/CMakeLists.txt
Brendan Coles 8c0723960b QuickShow: Replace posix_spawn with LibDesktop::Launcher
When multiple images are dragged and dropped onto the image widget,
QuickShow will use LibDesktop::Launcher to launch a new instance
of QuickShow for each item, rather than spawn a child QuickShow
process for each item with posix_spawn.

This allows `proc` and `exec` pledges to be removed :^)
2021-03-12 15:22:12 +01:00

8 lines
147 B
CMake

set(SOURCES
main.cpp
QSWidget.cpp
)
serenity_app(QuickShow ICON filetype-image)
target_link_libraries(QuickShow LibDesktop LibGUI LibGfx)