diff --git a/kiwmi/luak/ipc.c b/kiwmi/luak/ipc.c index 537a25e..536b016 100644 --- a/kiwmi/luak/ipc.c +++ b/kiwmi/luak/ipc.c @@ -10,7 +10,7 @@ #include #include -#include "kiwmi-ipc-server-protocol.h" +#include "kiwmi-ipc-protocol.h" #include "luak/luak.h" static void diff --git a/protocols/meson.build b/protocols/meson.build index 7400f03..05de04d 100644 --- a/protocols/meson.build +++ b/protocols/meson.build @@ -13,14 +13,14 @@ foreach protocol : protocols_server protocols_server_src += custom_target( protocol.underscorify() + '_server_c', input: protocol, - output: '@BASENAME@-server-protocol.c', + output: '@BASENAME@-protocol.c', command: [wayland_scanner_bin, 'private-code', '@INPUT@', '@OUTPUT@'], ) protocols_server_inc += custom_target( protocol.underscorify() + '_server_h', input: protocol, - output: '@BASENAME@-server-protocol.h', + output: '@BASENAME@-protocol.h', command: [wayland_scanner_bin, 'server-header', '@INPUT@', '@OUTPUT@'], ) endforeach