libliftoff/example/meson.build
Simon Ser 29dfe66ecf
example: add dynamic example
This example demonstrates how incremental layer updates should be applied. It
contains a basic rendering loop. Each layers has a back-buffer and a
front-buffer. The color of one of the layers will change at each frame.
2019-10-15 12:08:02 +03:00

17 lines
261 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],
)