pipewire/src/meson.build
George Kiagiadakis 953dc22f50 src: move extensions into pipewire
This allows having the same directory structure for headers as it
is in $prefix/include when installed, so that we can build other
projects using pipewire uninstalled (via the -uninstalled.pc or
by using meson subprojects). Otherwise, external code that reasonably
includes <pipewire/extensions/foo.h> fails to compile.
2021-06-18 17:54:18 +03:00

15 lines
249 B
Meson

subdir('pipewire')
subdir('daemon')
subdir('tools')
subdir('modules')
if not get_option('examples').disabled()
subdir('examples')
endif
if not get_option('tests').disabled()
subdir('tests')
endif
if gst_dep.length() != 0
subdir('gst')
endif