File: meson.build

package info (click to toggle)
vali 0.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 288 kB
  • sloc: ansic: 3,980; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 346 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
example_gen = custom_target(
	'example_gen',
	command: [tool, 'generate', '--prefix=ftl', '@INPUT@', '@OUTPUT0@', '@OUTPUT1@'],
	input: 'example.varlink',
	output: ['example.h', 'example.c'],
)

executable(
	'client',
	['client.c', example_gen],
	dependencies: vali,
)

executable(
	'service',
	['service.c', example_gen],
	dependencies: vali,
)