mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2026-05-09 23:50:15 -04:00
24 lines
404 B
Meson
24 lines
404 B
Meson
|
|
tutorials = [
|
||
|
|
'tutorial1',
|
||
|
|
'tutorial2',
|
||
|
|
'tutorial3',
|
||
|
|
'tutorial4',
|
||
|
|
'tutorial5',
|
||
|
|
'tutorial6',
|
||
|
|
'tutorial7',
|
||
|
|
]
|
||
|
|
|
||
|
|
if not get_option('examples').allowed()
|
||
|
|
subdir_done()
|
||
|
|
endif
|
||
|
|
|
||
|
|
foreach c : tutorials
|
||
|
|
executable(
|
||
|
|
c,
|
||
|
|
sources: c + '.c',
|
||
|
|
dependencies: [ pipewire_dep, mathlib ],
|
||
|
|
install: installed_tests_enabled,
|
||
|
|
install_dir: installed_tests_execdir / 'examples',
|
||
|
|
)
|
||
|
|
endforeach
|