Fix protocol names
This commit is contained in:
parent
a0bae4f8b5
commit
0b93459147
2 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@
|
||||||
#include <lauxlib.h>
|
#include <lauxlib.h>
|
||||||
#include <wlr/util/log.h>
|
#include <wlr/util/log.h>
|
||||||
|
|
||||||
#include "kiwmi-ipc-server-protocol.h"
|
#include "kiwmi-ipc-protocol.h"
|
||||||
#include "luak/luak.h"
|
#include "luak/luak.h"
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
|
|
@ -13,14 +13,14 @@ foreach protocol : protocols_server
|
||||||
protocols_server_src += custom_target(
|
protocols_server_src += custom_target(
|
||||||
protocol.underscorify() + '_server_c',
|
protocol.underscorify() + '_server_c',
|
||||||
input: protocol,
|
input: protocol,
|
||||||
output: '@BASENAME@-server-protocol.c',
|
output: '@BASENAME@-protocol.c',
|
||||||
command: [wayland_scanner_bin, 'private-code', '@INPUT@', '@OUTPUT@'],
|
command: [wayland_scanner_bin, 'private-code', '@INPUT@', '@OUTPUT@'],
|
||||||
)
|
)
|
||||||
|
|
||||||
protocols_server_inc += custom_target(
|
protocols_server_inc += custom_target(
|
||||||
protocol.underscorify() + '_server_h',
|
protocol.underscorify() + '_server_h',
|
||||||
input: protocol,
|
input: protocol,
|
||||||
output: '@BASENAME@-server-protocol.h',
|
output: '@BASENAME@-protocol.h',
|
||||||
command: [wayland_scanner_bin, 'server-header', '@INPUT@', '@OUTPUT@'],
|
command: [wayland_scanner_bin, 'server-header', '@INPUT@', '@OUTPUT@'],
|
||||||
)
|
)
|
||||||
endforeach
|
endforeach
|
||||||
|
|
Loading…
Reference in a new issue