mirror of
https://gitlab.freedesktop.org/emersion/libliftoff.git
synced 2024-11-16 19:47:55 +01:00
b06596085d
This example sets up libliftoff with multiple outputs, with a fixed number of layers per output.
23 lines
357 B
Meson
23 lines
357 B
Meson
executable(
|
|
'simple',
|
|
files('common.c', 'simple.c'),
|
|
dependencies: [liftoff],
|
|
)
|
|
|
|
executable(
|
|
'compositor',
|
|
files('common.c', 'compositor.c'),
|
|
dependencies: [liftoff],
|
|
)
|
|
|
|
executable(
|
|
'dynamic',
|
|
files('common.c', 'dynamic.c'),
|
|
dependencies: [liftoff],
|
|
)
|
|
|
|
executable(
|
|
'multi-output',
|
|
files('common.c', 'multi-output.c'),
|
|
dependencies: [liftoff],
|
|
)
|