summaryrefslogtreecommitdiff
path: root/webrtc/meson.build
blob: c166f9bc2c7a0bb66246ee3928f79349a1763009 (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
webrtc_sources = [
  'common_types.cc'
]

webrtc_headers = [
  'common.h',
  'common_types.h',
  'typedefs.h',
]

install_headers(webrtc_headers,
    subdir: 'webrtc_audio_processing/webrtc'
)

libwebrtc = static_library('webrtc',
    webrtc_sources,
    dependencies: common_deps,
    include_directories: webrtc_inc,
    c_args: common_cflags,
    cpp_args: common_cxxflags
)

webrtc_dep = declare_dependency(
    link_with: libwebrtc
)

subdir('base')
subdir('common_audio')
subdir('system_wrappers')

subdir('modules')