sysprof-agent: move sysprof-agent to own directory

The tools directory will be going away and pieces moved around.
This commit is contained in:
Christian Hergert
2023-07-17 11:40:26 -07:00
parent ee962d93cd
commit 1913e27b61
3 changed files with 262 additions and 286 deletions

View File

@ -0,0 +1,25 @@
ipc_agent_src = gnome.gdbus_codegen('ipc-agent',
sources: 'org.gnome.Sysprof.Agent.xml',
interface_prefix: 'org.gnome.Sysprof.',
namespace: 'Ipc',
)
sysprof_agent_sources = [
'sysprof-agent.c',
ipc_agent_src,
]
sysprof_agent_c_args = [
]
sysprof_agent_deps = [
libsysprof_analyze_static_dep,
libsysprof_profile_static_dep,
]
sysprof_agent = executable('sysprof-agent', sysprof_agent_sources,
dependencies: sysprof_agent_deps,
c_args: release_flags + sysprof_agent_c_args,
install_dir: get_option('bindir'),
install: true,
)