File: meson.build

package info (click to toggle)
webrtc-audio-processing 1.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,112 kB
  • sloc: cpp: 50,766; ansic: 19,793; asm: 236; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 628 bytes parent folder | download
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
system_wrappers_sources = [
  'source/cpu_features.cc',
  'source/field_trial.cc',
  'source/metrics.cc',
  'source/sleep.cc',
]

system_headers = [
  'include/cpu_features_wrapper.h',
  'include/metrics.h',
  'include/sleep.h',
]

install_headers(system_headers,
    subdir: join_paths(include_subdir, 'system_wrappers', 'include')
)

libsystem_wrappers = static_library('system_wrappers',
    system_wrappers_sources,
    dependencies: common_deps,
    include_directories: webrtc_inc,
    c_args : common_cflags,
    cpp_args : common_cxxflags
)

system_wrappers_dep = declare_dependency(
    link_with: libsystem_wrappers
)