mirror of
https://gitlab.gnome.org/GNOME/libmks.git
synced 2024-11-05 08:21:10 +00:00
12 lines
219 B
Meson
12 lines
219 B
Meson
tools = {
|
|
'mks-connect': {},
|
|
'mks': {},
|
|
}
|
|
|
|
foreach tool, params: tools
|
|
tool_exe = executable(tool, '@0@.c'.format(tool),
|
|
dependencies: libmks_dep,
|
|
install: get_option('install-tools'),
|
|
)
|
|
endforeach
|