mirror of
https://github.com/irssi/irssi.git
synced 2026-08-10 12:23:37 +02:00
run meson formatter
This commit is contained in:
parent
80b8875fea
commit
221d520c37
33 changed files with 661 additions and 315 deletions
|
|
@ -1,6 +1,7 @@
|
|||
# this file is part of irssi
|
||||
|
||||
libfe_irc_dcc_a = static_library('fe_irc_dcc',
|
||||
libfe_irc_dcc_a = static_library(
|
||||
'fe_irc_dcc',
|
||||
files(
|
||||
'fe-dcc-chat-messages.c',
|
||||
'fe-dcc-chat.c',
|
||||
|
|
@ -16,14 +17,17 @@ libfe_irc_dcc_a = static_library('fe_irc_dcc',
|
|||
def_helpdir,
|
||||
def_sysconfdir,
|
||||
],
|
||||
dependencies : dep)
|
||||
shared_library('fe_irc_dcc',
|
||||
dependencies : dep,
|
||||
)
|
||||
shared_library(
|
||||
'fe_irc_dcc',
|
||||
name_suffix : module_suffix,
|
||||
install : true,
|
||||
install_dir : moduledir,
|
||||
link_with : dl_cross_irc_dcc + dl_cross_irc_core + dl_cross_irssi_main,
|
||||
link_whole : libfe_irc_dcc_a,
|
||||
override_options : ['b_lundef=false'])
|
||||
override_options : [ 'b_lundef=false' ],
|
||||
)
|
||||
|
||||
install_headers(
|
||||
files(
|
||||
|
|
@ -31,4 +35,5 @@ install_headers(
|
|||
'module-formats.h',
|
||||
'module.h',
|
||||
),
|
||||
subdir : incdir / 'src' / 'fe-common' / 'irc' / 'dcc')
|
||||
subdir : incdir / 'src' / 'fe-common' / 'irc' / 'dcc',
|
||||
)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
# this file is part of irssi
|
||||
|
||||
libfe_common_irc_a = static_library('fe_common_irc',
|
||||
libfe_common_irc_a = static_library(
|
||||
'fe_common_irc',
|
||||
files(
|
||||
'fe-cap.c',
|
||||
'fe-common-irc.c',
|
||||
|
|
@ -27,14 +28,17 @@ libfe_common_irc_a = static_library('fe_common_irc',
|
|||
def_helpdir,
|
||||
def_themesdir,
|
||||
],
|
||||
dependencies : dep)
|
||||
shared_library('fe_common_irc',
|
||||
dependencies : dep,
|
||||
)
|
||||
shared_library(
|
||||
'fe_common_irc',
|
||||
name_suffix : module_suffix,
|
||||
install : true,
|
||||
install_dir : moduledir,
|
||||
link_with : dl_cross_irc_core + dl_cross_irssi_main,
|
||||
link_whole : libfe_common_irc_a,
|
||||
override_options : ['b_lundef=false'])
|
||||
override_options : [ 'b_lundef=false' ],
|
||||
)
|
||||
|
||||
install_headers(
|
||||
files(
|
||||
|
|
@ -43,7 +47,8 @@ install_headers(
|
|||
'module-formats.h',
|
||||
'module.h',
|
||||
),
|
||||
subdir : incdir / 'src' / 'fe-common' / 'irc')
|
||||
subdir : incdir / 'src' / 'fe-common' / 'irc',
|
||||
)
|
||||
|
||||
subdir('dcc')
|
||||
subdir('notifylist')
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
# this file is part of irssi
|
||||
|
||||
libfe_irc_notifylist_a = static_library('fe_irc_notifylist',
|
||||
libfe_irc_notifylist_a = static_library(
|
||||
'fe_irc_notifylist',
|
||||
files(
|
||||
'fe-notifylist.c',
|
||||
'module-formats.c',
|
||||
|
|
@ -11,18 +12,22 @@ libfe_irc_notifylist_a = static_library('fe_irc_notifylist',
|
|||
def_helpdir,
|
||||
def_sysconfdir,
|
||||
],
|
||||
dependencies : dep)
|
||||
shared_library('fe_irc_notifylist',
|
||||
dependencies : dep,
|
||||
)
|
||||
shared_library(
|
||||
'fe_irc_notifylist',
|
||||
name_suffix : module_suffix,
|
||||
install : true,
|
||||
install_dir : moduledir,
|
||||
link_with : dl_cross_irc_notifylist + dl_cross_irssi_main,
|
||||
link_whole : libfe_irc_notifylist_a,
|
||||
override_options : ['b_lundef=false'])
|
||||
override_options : [ 'b_lundef=false' ],
|
||||
)
|
||||
|
||||
install_headers(
|
||||
files(
|
||||
'module-formats.h',
|
||||
'module.h',
|
||||
),
|
||||
subdir : incdir / 'src' / 'fe-common' / 'irc' / 'notifylist')
|
||||
subdir : incdir / 'src' / 'fe-common' / 'irc' / 'notifylist',
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue