aboutsummaryrefslogtreecommitdiffstats
path: root/lib/meson.build
blob: 54a103ee2af91bc4838e50cd398daf135d432dec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
if get_option('icipc').disabled()
  icipc_dep = disabler()
  subdir_done()
endif

icipc_lib_sources = files(
  'utils.c',
  'protocol.c',
  'receiver.c',
  'sender.c',
  'client.c',
  'server.c',
)

icipc_lib_headers = files(
  'protocol.h',
  'receiver.h',
  'sender.h',
  'client.h',
  'server.h',
  'icipc.h',
)



install_headers(icipc_lib_headers,
  install_dir : get_option('includedir') / 'icipc-' + wireplumber_api_version / 'icipc'
)

icipc_lib = library('icipc-' + wireplumber_api_version,
  icipc_lib_sources,
  c_args : [
    '-D_GNU_SOURCE',
    '-DG_LOG_USE_STRUCTURED',
    '-DG_LOG_DOMAIN="icipc"',
  ],
  install: true,
  dependencies : [dependency('threads'), spa_dep],
)

icipc_dep = declare_dependency(
  link_with: icipc_lib,
  include_directories: wp_lib_include_dir,
  dependencies: [spa_dep],
)