File: meson.build

package info (click to toggle)
foundry 1.1~beta-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,552 kB
  • sloc: ansic: 167,487; xml: 417; makefile: 21; sh: 19; javascript: 10
file content (23 lines) | stat: -rw-r--r-- 560 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
if not get_option('feature-flatpak')
  error('plugin-deviced requires feature-flatpak')
endif

libdeviced_dep = dependency('libdeviced', version: '>= 3.27.4')

foundry_deps += [
  libdeviced_dep,
]

foundry_private_sources += files([
  'plugin.c',
  'plugin-deviced-deploy-strategy.c',
  'plugin-deviced-device.c',
  'plugin-deviced-device-info.c',
  'plugin-deviced-device-provider.c',
])

foundry_deviced = executable('foundry-deviced', 'foundry-deviced.c',
       install: true,
   install_dir: get_option('libexecdir'),
  dependencies: [libdeviced_dep],
)