mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2026-02-11 23:51:06 +00:00
sysprof-agent: move sysprof-agent to own directory
The tools directory will be going away and pieces moved around.
This commit is contained in:
25
src/sysprof-agent/meson.build
Normal file
25
src/sysprof-agent/meson.build
Normal 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,
|
||||
)
|
||||
Reference in New Issue
Block a user