mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
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.
15 lines
249 B
Meson
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
|