mirror of
https://github.com/DreamMaoMao/maomaowm.git
synced 2025-10-29 05:40:21 -04:00
project: optimize mmsg build action
This commit is contained in:
parent
59d86e7169
commit
9ad13ca222
1 changed files with 14 additions and 15 deletions
29
meson.build
29
meson.build
|
|
@ -118,24 +118,24 @@ executable('mango',
|
||||||
|
|
||||||
# build mmsg
|
# build mmsg
|
||||||
dwl_ipc_protocol = 'protocols/dwl-ipc-unstable-v2.xml'
|
dwl_ipc_protocol = 'protocols/dwl-ipc-unstable-v2.xml'
|
||||||
dwl_ipc_header = custom_target(
|
|
||||||
'dwl-ipc-header',
|
wayland_scanner_client_header = generator(
|
||||||
input: dwl_ipc_protocol,
|
wayland_scanner,
|
||||||
output: 'dwl-ipc-unstable-v2-protocol.h',
|
output: '@BASENAME@-protocol.h',
|
||||||
command: [wayland_scanner, 'client-header', '@INPUT@', '@OUTPUT@'],
|
arguments: ['client-header', '@INPUT@', '@OUTPUT@']
|
||||||
build_by_default: true,
|
|
||||||
)
|
|
||||||
dwl_ipc_source = custom_target(
|
|
||||||
'dwl-ipc-source',
|
|
||||||
input: dwl_ipc_protocol,
|
|
||||||
output: 'dwl-ipc-unstable-v2-protocol.c',
|
|
||||||
command: [wayland_scanner, 'private-code', '@INPUT@', '@OUTPUT@'],
|
|
||||||
build_by_default: true,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
wayland_scanner_private_code = generator(
|
||||||
|
wayland_scanner,
|
||||||
|
output: '@BASENAME@-protocol.c',
|
||||||
|
arguments: ['private-code', '@INPUT@', '@OUTPUT@']
|
||||||
|
)
|
||||||
|
|
||||||
|
# 在 mmsg 目标中使用生成器
|
||||||
executable('mmsg',
|
executable('mmsg',
|
||||||
'mmsg/mmsg.c',
|
'mmsg/mmsg.c',
|
||||||
dwl_ipc_source,
|
wayland_scanner_private_code.process(dwl_ipc_protocol),
|
||||||
|
wayland_scanner_client_header.process(dwl_ipc_protocol),
|
||||||
dependencies: [
|
dependencies: [
|
||||||
libwayland_client_dep
|
libwayland_client_dep
|
||||||
],
|
],
|
||||||
|
|
@ -146,7 +146,6 @@ executable('mmsg',
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
desktop_install_dir = join_paths(prefix, 'share/wayland-sessions')
|
desktop_install_dir = join_paths(prefix, 'share/wayland-sessions')
|
||||||
install_data('mango.desktop', install_dir : desktop_install_dir)
|
install_data('mango.desktop', install_dir : desktop_install_dir)
|
||||||
install_data('config.conf', install_dir : join_paths(sysconfdir, 'mango'))
|
install_data('config.conf', install_dir : join_paths(sysconfdir, 'mango'))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue