File: meson.build

package info (click to toggle)
gitg 41-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,876 kB
  • sloc: ansic: 1,636; ruby: 1,445; sh: 314; python: 261; xml: 57; makefile: 15
file content (29 lines) | stat: -rw-r--r-- 556 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
28
29
install_data(
  'files.plugin',
  install_dir: plugin_dir,
)

sources = files(
  'gitg-files.vala',
  'gitg-files-tree-store.vala',
)

resource_data = files('resources/view-files.ui')

sources += gnome.compile_resources(
  'gitg-files-resources',
  'resources/resources.xml',
  source_dir: 'resources',
  dependencies: resource_data,
)

libfiles = shared_module(
  'files',
  sources: sources,
  include_directories: top_inc,
  dependencies: plugin_deps,
  c_args: plugin_cflags,
  install: true,
  install_dir: plugin_dir,
  name_suffix: module_suffix,
)