mirror of
https://gitlab.freedesktop.org/libinput/libei.git
synced 2026-05-20 15:18:23 +02:00
10 lines
287 B
Meson
10 lines
287 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
|