summaryrefslogtreecommitdiffstats
path: root/plugins/snippets/meson.build
blob: 91401d13e2719fd2033957dc9e4853f6eef0324e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
subdir('snippets')

install_subdir(
  'data',
  strip_directory : true,
  install_dir: join_paths(
    pkgdatadir,
    'plugins',
    'snippets',
  )
)

custom_target(
  'snippets.plugin',
  input: 'snippets.plugin.desktop.in',
  output: 'snippets.plugin',
  command: msgfmt_plugin_cmd,
  install: true,
  install_dir: join_paths(
    pkglibdir,
    'plugins',
  )
)