mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2026-05-26 21:48:20 +02:00
14 lines
427 B
Meson
14 lines
427 B
Meson
scanner = find_program('ei-scanner')
|
|
protocol_xml = files('protocol.xml')
|
|
protocol_dtd = files('protocol.dtd')
|
|
|
|
xmllint = find_program('xmllint', required: false)
|
|
if xmllint.found()
|
|
test('dtdcheck', xmllint,
|
|
args: ['--dtdvalid', protocol_dtd, protocol_xml]
|
|
)
|
|
endif
|
|
|
|
pymod = import('python')
|
|
required_python_modules = ['attr', 'jinja2']
|
|
pymod.find_installation('python3', modules: required_python_modules)
|