From f62a21d3b26838fce17b9c6314bcc44ffc836326 Mon Sep 17 00:00:00 2001 From: DanyLE Date: Sat, 5 Jul 2025 20:37:04 +0200 Subject: [PATCH] fix: compilation errors --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index e805d66..14e4f71 100644 --- a/meson.build +++ b/meson.build @@ -38,8 +38,8 @@ wl_protocols = [ foreach proto : wl_protocols xml = ''.join([proto,'.xml']) - header = ''.join([proto.split('/').get(-1),'.h']) - cfile = ''.join([proto.split('/').get(-1),'.c']) + header = ''.join([proto.split('/').get(-1),'-protocol.h']) + cfile = ''.join([proto.split('/').get(-1),'-protocol.c']) wayland_targets += custom_target(header,output:header,input:xml, command: [ wayland_scanner, 'server-header', '@INPUT@', '@OUTPUT@' ] ) wayland_targets += custom_target(cfile,output:cfile,input:xml,