File: meson.build

package info (click to toggle)
fontconfig 2.17.1-5
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 5,160 kB
  • sloc: ansic: 26,595; makefile: 1,282; sh: 1,201; python: 1,010
file content (16 lines) | stat: -rw-r--r-- 590 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fccache = executable('fc-cache', ['fc-cache.c', fcstdint_h, alias_headers, ft_alias_headers],
  include_directories: [incbase, incsrc],
  dependencies: [libintl_dep],
  link_with: [libfontconfig],
  c_args: c_args,
  install: true,
  install_tag: 'tools')

tools_man_pages += ['fc-cache']

# Do not try to execute target's fc-cache on host when cross compiling
if get_option('cache-build').enabled() and not meson.is_cross_build()
  meson.add_install_script(fccache, '-s', '-f', '-v',
                           skip_if_destdir: true,
                           install_tag: 'tools')
endif