File: meson.build

package info (click to toggle)
rhythmbox 3.4.9-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 27,376 kB
  • sloc: ansic: 114,861; python: 4,941; xml: 730; javascript: 350; perl: 307; sh: 84; makefile: 43
file content (40 lines) | stat: -rw-r--r-- 900 bytes parent folder | download | duplicates (2)
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
backends_headers = files(
  'rb-encoder.h',
  'rb-player.h',
  'rb-player-gst-filter.h',
  'rb-player-gst-tee.h',

  'gstreamer/rb-player-gst-helper.h',
)

install_headers(backends_headers, subdir: 'rhythmbox/backends')

backends_sources = files(
  'rb-encoder.c',
  'rb-player.c',
  'rb-player-gst-filter.c',
  'rb-player-gst-tee.c',

  'gstreamer/rb-encoder-gst.c',
  'gstreamer/rb-player-gst-helper.c',
  'gstreamer/rb-player-gst.c',
  'gstreamer/rb-player-gst-multi.c',
)

backends_c_args = [
  '-DGNOMELOCALEDIR="' + datadir + '/locale"',
  '-DG_LOG_DOMAIN="Rhythmbox"',
]

rbbackends_lib = static_library('rbbackends',
  backends_sources,
  dependencies: [common_deps, librb_dep, rhythmdb_dep],
  c_args: backends_c_args,
  include_directories: backendsinc,
)

rbbackends_dep = declare_dependency(
  link_with: rbbackends_lib,
  dependencies: common_deps,
  include_directories: backendsinc,
)