meson build support

This commit is contained in:
Ailin Nemui 2019-07-08 00:02:53 +02:00
commit db16a0a853
57 changed files with 1787 additions and 46 deletions

33
src/perl/ui/meson.build Normal file
View file

@ -0,0 +1,33 @@
libperl_ui_a = shared_module('UI',
[ xsubpp.process(
files(
'Formats.xs',
'Themes.xs',
'UI.xs',
'Window.xs',
),
extra_args : [
'-typemap',
'../common/typemap',
],
) ]
+ files(
'module.h',
),
name_prefix : '',
install : true,
install_dir : perlmoddir / 'auto' / 'Irssi' / 'UI',
include_directories : rootinc,
implicit_include_directories : true,
dependencies : dep + [ perl_dep ],
)
install_headers(
files(
'UI.pm',
),
install_dir : perlmoddir / 'Irssi',
)
# 'Makefile.PL.in',
# 'typemap',