mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
separately now). Added statusbar code to available to perl, it's now possible to create new statusbar items with perl scripts. statusbar_items_redraw(char *name) can now be used to easily redraw all named statusbar items in screen. Probably several other changes I've already forgotten :) git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1861 dbcabf3a-b0e7-0310-adc4-f8d773084564
8 lines
347 B
Perl
8 lines
347 B
Perl
use ExtUtils::MakeMaker;
|
|
|
|
WriteMakefile('NAME' => 'Irssi::UI',
|
|
'LIBS' => '',
|
|
'OBJECT' => '$(O_FILES)',
|
|
'TYPEMAPS' => ['../common/typemap'],
|
|
'INC' => '-I../../.. -I@top_srcdir@/src -I@top_srcdir@/src/core -I@top_srcdir@/src/fe-common/core @GLIB_CFLAGS@',
|
|
'VERSION_FROM' => '@srcdir@/UI.pm');
|