pipewire/spa/examples/meson.build
Gleb Popov fd937fa378 On FreeBSD, add dependency on epoll-shim library.
FreeBSD doesn't provide timerfd and eventfd functions. These are implemented in
3rd party library called epoll-shim. Link targets requiring these functions to
this library.
2019-11-19 13:41:40 +01:00

11 lines
410 B
Meson

if sdl_dep.found()
executable('local-v4l2', 'local-v4l2.c',
include_directories : [spa_inc ],
dependencies : [dl_lib, sdl_dep, pthread_lib],
install : false)
endif
executable('example-control', 'example-control.c',
include_directories : [spa_inc ],
dependencies : [dl_lib, pthread_lib, mathlib, epoll_shim_dep],
install : false)