mirror of
https://github.com/varun-r-mallya/sysprof.git
synced 2025-12-31 20:36:25 +00:00
22 lines
475 B
Meson
22 lines
475 B
Meson
if get_option('with_sysprofd') == 'bundled'
|
|
|
|
sysprofd_sources = [
|
|
'sysprofd.c',
|
|
'sd-bus-helper.c',
|
|
'sd-bus-helper.h',
|
|
]
|
|
|
|
# NOTE: This is used in data/meson.build
|
|
pkglibexecdir = join_paths(get_option('prefix'), get_option('libexecdir'), 'sysprof')
|
|
|
|
sysprofd = executable('sysprofd',
|
|
sysprofd_sources,
|
|
c_args: exe_c_args,
|
|
link_args: exe_link_args,
|
|
dependencies: dependency('libsystemd', version: '>=222'),
|
|
install: true,
|
|
install_dir: pkglibexecdir,
|
|
)
|
|
|
|
endif
|