16 lines
348 B
Meson
16 lines
348 B
Meson
|
xorg_exa = shared_module('exa',
|
||
|
'examodule.c',
|
||
|
include_directories: [inc, xorg_inc],
|
||
|
dependencies: common_dep,
|
||
|
link_with: [libxserver_exa, e],
|
||
|
c_args: xorg_c_args,
|
||
|
install: true,
|
||
|
install_dir: module_dir,
|
||
|
)
|
||
|
|
||
|
install_man(configure_file(
|
||
|
input: 'man/exa.man',
|
||
|
output: 'exa.4',
|
||
|
configuration: manpage_config,
|
||
|
))
|