File: meson.build

package info (click to toggle)
phosh 0.53.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 9,936 kB
  • sloc: ansic: 83,383; xml: 3,981; python: 717; sh: 449; makefile: 34; lisp: 22; javascript: 6
file content (15 lines) | stat: -rw-r--r-- 347 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
if not get_option('searchd')
  subdir_done()
endif

searchd_args = ['-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="mobi.phosh.Shell.Search"']

executable(
  'phosh-searchd',
  ['searchd.c', 'search-provider.c'],
  include_directories: [root_inc],
  dependencies: phosh_search_dep,
  c_args: searchd_args,
  install_dir: libexecdir,
  install: true,
)