mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
This allows external tooling to write capture files that Sysprof can open. Ideally, this will get used by GJS in the near future to implement profiler output for Sysprof.
15 lines
315 B
Meson
15 lines
315 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_capture_dep,
|
|
c_args: exe_c_args,
|
|
link_args: exe_link_args,
|
|
)
|