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 (27 lines) | stat: -rw-r--r-- 835 bytes parent folder | download | duplicates (4)
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
generic_player_plugin_dir = plugindir + '/generic-player'

generic_player_resources = gnome.compile_resources('generic-player-resources',
  'generic-player.gresource.xml',
  source_dir: meson.current_source_dir())

generic_player_sources = [
  generic_player_resources,
  'rb-generic-player-plugin.c',
  'rb-generic-player-source.c',
  'rb-generic-player-playlist-source.c',
  'rb-nokia770-source.c',
  'rb-psp-source.c',
]

shared_module('generic-player',
  generic_player_sources,
  dependencies: [rhythmbox_core_dep],
  install: true,
  install_dir: generic_player_plugin_dir)

generic_player_plugin_descriptor = custom_target('generic-player-plugin-descriptor',
  input: 'generic-player.plugin.desktop.in',
  output: 'generic-player.plugin',
  command: msgfmt_plugin_cmd,
  install: true,
  install_dir: generic_player_plugin_dir)