File: meson.build

package info (click to toggle)
libssc 0.4.2-2
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 1,788 kB
  • sloc: ansic: 3,714; python: 707; makefile: 10
file content (19 lines) | stat: -rw-r--r-- 636 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
mocking_config_sources = files(
  'sensor-accelerometer.json',
  'sensor-magnetometer.json',
  'sensor-proximity.json',
  'sensor-rotationvector.json',
  'sensor-light.json',
  'sensor-no-sample-rate.json',
  'sensor-registry.json',
  'sensor-unavailable.json'
)

custom_target(
  'copy-mocking-configure',
  input: mocking_config_sources,
  output: ['sensor-accelerometer.json', 'sensor-magnetometer.json', 'sensor-proximity.json', 'sensor-rotationvector.json', 'sensor-light.json', 'sensor-no-sample-rate.json', 'sensor-registry.json', 'sensor-unavailable.json'],
  command: ['cp', '@INPUT@', '@OUTDIR@'],
  build_by_default: true
)