diff options
Diffstat (limited to 'src/machine/meson.build')
-rw-r--r-- | src/machine/meson.build | 61 |
1 files changed, 61 insertions, 0 deletions
diff --git a/src/machine/meson.build b/src/machine/meson.build new file mode 100644 index 0000000..b3a1ffc --- /dev/null +++ b/src/machine/meson.build @@ -0,0 +1,61 @@ +# SPDX-License-Identifier: LGPL-2.1-or-later + +libmachine_core_sources = files( + 'image-dbus.c', + 'machine-dbus.c', + 'machine.c', + 'machined-core.c', + 'machined-dbus.c', + 'machined-varlink.c', + 'operation.c', +) + +libmachine_core = static_library( + 'machine-core', + libmachine_core_sources, + include_directories : includes, + dependencies : [threads, + userspace], + build_by_default : false) + +executables += [ + libexec_template + { + 'name' : 'systemd-machined', + 'dbus' : true, + 'conditions' : ['ENABLE_MACHINED'], + 'sources' : files('machined.c'), + 'link_with' : [ + libmachine_core, + libshared, + ], + }, + executable_template + { + 'name' : 'machinectl', + 'public' : true, + 'conditions' : ['ENABLE_MACHINED'], + 'sources' : files('machinectl.c'), + 'dependencies' : [ + liblz4, + libxz, + libzstd, + threads, + ], + }, + test_template + { + 'sources' : files('test-machine-tables.c'), + 'link_with': [ + libmachine_core, + libshared + ], + 'dependencies': threads, + }, +] + +if conf.get('ENABLE_MACHINED') == 1 + install_data('org.freedesktop.machine1.conf', + install_dir : dbuspolicydir) + install_data('org.freedesktop.machine1.service', + install_dir : dbussystemservicedir) + install_data('org.freedesktop.machine1.policy', + install_dir : polkitpolicydir) +endif |