Systemd/src/machine/meson.build
Zbigniew Jędrzejewski-Szmek 2c201c2140 meson: use booleans for conf.set and drop unecessary conditionals
Using conf.set() with a boolean argument does the right thing:
either #ifdef or #undef. This means that conf.set can be used unconditionally.

Previously I used '1' as the placeholder value, and that needs to be changed to
'true' for consistency (under meson 1 cannot be used in boolean context). All
checks need to be adjusted.
2017-05-02 16:29:11 -04:00

46 lines
1.2 KiB
Meson

systemd_machined_sources = files('''
machined.c
machined.h
'''.split())
libmachine_core_sources = files('''
machine.c
machine.h
machined-dbus.c
machine-dbus.c
machine-dbus.h
image-dbus.c
image-dbus.h
operation.c
operation.h
'''.split())
libmachine_core = static_library(
'machine-core',
libmachine_core_sources,
include_directories : includes,
dependencies : [threads])
if conf.get('ENABLE_MACHINED', false)
install_data('org.freedesktop.machine1.conf',
install_dir : dbuspolicydir)
install_data('org.freedesktop.machine1.service',
install_dir : dbussystemservicedir)
custom_target(
'org.freedesktop.machine1.policy',
input : 'org.freedesktop.machine1.policy.in',
output : 'org.freedesktop.machine1.policy',
command : intltool_command,
install : install_polkit,
install_dir : polkitpolicydir)
endif
tests += [
[['src/machine/test-machine-tables.c'],
[libmachine_core,
libshared],
[threads],
'ENABLE_MACHINED'],
]