summaryrefslogtreecommitdiff
path: root/src/modules/echo-cancel/meson.build
blob: 0a3deb902097694273a280536cbe2cec8586e0c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# The webrtc code is split off into a helper library to avoid having automake
# link module-echo-cancel with C++ (which it does if there are any C++ deps,
# even conditional ones).

# This library requires a symbol from module-echo-cancel, hence we need
# '-Wl,--unresolved-symbols=ignore-in-object-files' otherwise it fails
# at link time.

libwebrtc_util_sources = [
  'webrtc.cc'
]

libwebrtc_util = shared_library('webrtc-util',
  libwebrtc_util_sources,
  cpp_args : [pa_c_args, server_c_args],
  include_directories : [configinc, topinc],
  dependencies : [libpulse_dep, libpulsecommon_dep, libpulsecore_dep, webrtc_dep],
  link_args : [ '-Wl,--unresolved-symbols=ignore-in-object-files' ],
  install : true,
  install_dir : modlibexecdir,
)