mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
15 lines
307 B
Meson
15 lines
307 B
Meson
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,
|
|
)
|