File: meson.build

package info (click to toggle)
eom 1.28.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,292 kB
  • sloc: ansic: 28,248; makefile: 611; xml: 279; perl: 43; sh: 28
file content (27 lines) | stat: -rw-r--r-- 672 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
desktopfile = configure_file(input: 'reload.plugin.desktop.in.in', configuration: pkg_info, output: 'reload.plugin.desktop.in')
if get_option('nls')
  i18n.merge_file(
    input: desktopfile,
    output: 'reload.plugin',
    install: true,
    install_dir: pluginsdir,
    type: 'desktop',
    po_dir: po_dir,
  )
else
  install_data(desktopfile, install_dir: pluginsdir, rename: ['reload.plugin'])
endif

shared_library(
  'reload',
  sources: [
    'eom-reload-plugin.h',
    'eom-reload-plugin.c',
  ],
  c_args: plugins_c_args,
  dependencies: all_deps,
  include_directories: [top_inc, src_inc],
  link_with: [eom_links],
  install: true,
  install_dir: pluginsdir
)