thread_test/meson.build
2025-06-15 00:03:09 +03:00

20 lines
No EOL
381 B
Meson

project(
'thread_tree',
'C',
version: '0.0.1',
default_options: [ 'warning_level=3' ]
)
cmd = run_command('/usr/bin/find', 'src', '-name', '*.c')
c_files = cmd.stdout().splitlines()
cmd = run_command('/usr/bin/find', 'src', '-name', '*.h')
h_files = cmd.stdout().splitlines()
executable(
'thread_tree',
sources: [
c_files,
h_files
]
)