pipewire/spa/plugins/videotestsrc/meson.build
George Kiagiadakis d08ec09dde meson: spa/plugins: use pthread_lib instead of threads_dep
no need to refer to the same dependency with 2 different names
in the same codebase
2019-02-13 11:22:22 +01:00

8 lines
440 B
Meson

videotestsrc_sources = ['videotestsrc.c', 'plugin.c']
videotestsrclib = shared_library('spa-videotestsrc',
videotestsrc_sources,
include_directories : [ spa_inc],
dependencies : pthread_lib,
install : true,
install_dir : '@0@/spa/videotestsrc'.format(get_option('libdir')))