labwc/src/meson.build
Simon Long 8ba066a1a5
Add screen magnifier
This adds a screen magnifier which can be controlled with the
`ZoomIn` / `ZoomOut` and `ToggleMagnify` actions.

It scales up part of the rendered framebuffer so the magnification
may end up looking blurry depending on the magnification scale.

PR #1774
2024-05-16 00:07:23 +02:00

52 lines
767 B
Meson

labwc_sources = files(
'action.c',
'buffer.c',
'debug.c',
'desktop.c',
'dnd.c',
'edges.c',
'foreign.c',
'idle.c',
'interactive.c',
'layers.c',
'magnifier.c',
'main.c',
'node.c',
'osd.c',
'osd_field.c',
'output.c',
'output-virtual.c',
'overlay.c',
'placement.c',
'regions.c',
'resistance.c',
'seat.c',
'server.c',
'session-lock.c',
'snap-constraints.c',
'snap.c',
'tearing.c',
'theme.c',
'view.c',
'view-impl-common.c',
'window-rules.c',
'workspaces.c',
'xdg.c',
'xdg-popup.c',
)
if have_xwayland
labwc_sources += files(
'xwayland.c',
'xwayland-unmanaged.c',
)
endif
subdir('button')
subdir('common')
subdir('config')
subdir('decorations')
subdir('input')
subdir('menu')
subdir('ssd')