blob: 7ef875426808bdcf971dde2ae7b839a41319b322 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
if get_option('client')
executable('icipc-client',
'icipc-client.c',
dependencies : [icipc_dep, threads_dep],
)
endif
if get_option('server')
pipewire_module_access = shared_library(
'pipewire-module-protocol-ic-ipc',
[ 'module-protocol-ic-ipc.c' ],
c_args : [
'-DPACKAGE_VERSION="' + meson.project_version() + '"',
],
install : true,
install_dir : pipewire_dep.get_variable(pkgconfig: 'moduledir'),
dependencies : [icipc_dep, pipewire_dep],
)
endif
|