File: meson.build

package info (click to toggle)
boxfort 0.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 508 kB
  • sloc: ansic: 3,664; asm: 225; sh: 18; makefile: 4; python: 3
file content (20 lines) | stat: -rw-r--r-- 389 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
samples = [
	'nested.c',
	'callback.c',
	'timeout.c',
	'context.c',
]

foreach sample : samples
	e = executable(sample + '.bin', sample,
			include_directories: includedir,
			dependencies: [libm],
			link_with: libboxfort,
			c_args: [
				cc.get_supported_arguments([
					'-fvisibility=default',
                                        '-marm',
				])
			])
	test(sample, e)
endforeach