build: Add support for Meson

This commit is contained in:
Patrick Griffis
2016-10-20 05:26:58 -04:00
parent 496f10e34a
commit 52bc856be4
14 changed files with 672 additions and 0 deletions

14
tools/meson.build Normal file
View File

@ -0,0 +1,14 @@
sysprof_cli = executable('sysprof-cli',
'sysprof-cli.c',
dependencies: libsysprof_dep,
c_args: exe_c_args,
link_args: exe_link_args,
install: true,
)
sysprof_dump = executable('sysprof-dump',
'sysprof-dump.c',
dependencies: libsysprof_dep,
c_args: exe_c_args,
link_args: exe_link_args,
)