mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00

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 :^)
7 lines
147 B
CMake
7 lines
147 B
CMake
set(SOURCES
|
|
main.cpp
|
|
QSWidget.cpp
|
|
)
|
|
|
|
serenity_app(QuickShow ICON filetype-image)
|
|
target_link_libraries(QuickShow LibDesktop LibGUI LibGfx)
|