mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
Add beginnings of jack module
Update spec and makefile a bit
This commit is contained in:
parent
bc56c59597
commit
2c6b2f0b74
16 changed files with 2791 additions and 30 deletions
12
meson.build
12
meson.build
|
|
@ -122,6 +122,18 @@ configure_file(input : 'config.h.meson',
|
|||
|
||||
configinc = include_directories('.')
|
||||
|
||||
makedata = configuration_data()
|
||||
makedata.set('VERSION', pipewire_version)
|
||||
if version_arr.length() == 4
|
||||
makedata.set('TAG', 'HEAD')
|
||||
else
|
||||
makedata.set('TAG', pipewire_version)
|
||||
endif
|
||||
|
||||
configure_file(input : 'Makefile.in',
|
||||
output : 'Makefile',
|
||||
configuration : makedata)
|
||||
|
||||
# Find dependencies
|
||||
glib_dep = dependency('glib-2.0', version : '>=2.32.0')
|
||||
gobject_dep = dependency('gobject-2.0')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue