libmks/tools/meson.build
Christian Hergert b601d253aa tools: add mks tool for testing
Mostly so I can test the paintable implementation as I go.
2023-02-10 16:30:23 -08:00

11 lines
172 B
Meson

tools = {
'mks-connect': {},
'mks': {},
}
foreach tool, params: tools
tool_exe = executable(tool, '@0@.c'.format(tool),
dependencies: libmks_dep,
)
endforeach