sysprof-cli: port to libsysprof-profile

This commit is contained in:
Christian Hergert
2023-07-17 15:35:47 -07:00
parent 1fba250444
commit 29fd9e9cc0
2 changed files with 191 additions and 210 deletions

View File

@ -0,0 +1,20 @@
sysprof_cli_sources = [
'sysprof-cli.c',
]
sysprof_cli_c_args = [
]
sysprof_cli_deps = [
dependency('polkit-agent-1'),
libsysprof_analyze_static_dep,
libsysprof_profile_static_dep,
]
sysprof_cli = executable('sysprof-cli', sysprof_cli_sources,
dependencies: sysprof_cli_deps,
c_args: release_flags + sysprof_cli_c_args,
install_dir: get_option('bindir'),
install: true,
)