irssi/tests/irc/core/meson.build

53 lines
924 B
Meson
Raw Normal View History

2026-01-25 22:07:44 +01:00
test_test_irc = executable(
'test-irc',
2019-07-08 00:02:53 +02:00
files(
'test-irc.c',
),
link_with : [
libconfig_a,
libcore_a,
libfe_common_core_a,
libirc_core_a,
],
c_args : [
'-D' + 'PACKAGE_STRING' + '="' + 'irc/core' + '"',
],
include_directories : rootinc,
implicit_include_directories : false,
2026-01-25 22:07:44 +01:00
dependencies : dep,
2019-07-08 00:02:53 +02:00
)
2026-01-25 22:07:44 +01:00
test(
'test-irc test',
test_test_irc,
2019-07-08 00:02:53 +02:00
args : [
'--tap',
],
2026-01-25 22:07:44 +01:00
protocol : 'tap',
)
2019-07-08 00:02:53 +02:00
2026-01-25 22:07:44 +01:00
test_test_channel_events = executable(
'test-channel-events',
2019-07-08 00:02:53 +02:00
files(
'test-channel-events.c',
),
link_with : [
libconfig_a,
libcore_a,
libfe_common_core_a,
libirc_core_a,
],
c_args : [
'-D' + 'PACKAGE_STRING' + '="' + 'irc/core' + '"',
],
include_directories : rootinc,
implicit_include_directories : false,
2026-01-25 22:07:44 +01:00
dependencies : dep,
2019-07-08 00:02:53 +02:00
)
2026-01-25 22:07:44 +01:00
test(
'test-channel-events test',
test_test_channel_events,
2019-07-08 00:02:53 +02:00
args : [
'--tap',
],
2026-01-25 22:07:44 +01:00
protocol : 'tap',
)