diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:18:39 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:18:39 +0000 |
commit | fff5217f02d91268ce90c8c05665602c059faaef (patch) | |
tree | 2ba24d32dc96eafe7ed0a85269548e76796d849d /tests/fe-text/meson.build | |
parent | Initial commit. (diff) | |
download | irssi-fff5217f02d91268ce90c8c05665602c059faaef.tar.xz irssi-fff5217f02d91268ce90c8c05665602c059faaef.zip |
Adding upstream version 1.4.5.upstream/1.4.5upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/fe-text/meson.build')
-rw-r--r-- | tests/fe-text/meson.build | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/fe-text/meson.build b/tests/fe-text/meson.build new file mode 100644 index 0000000..397bd39 --- /dev/null +++ b/tests/fe-text/meson.build @@ -0,0 +1,31 @@ +test_test_paste_join_multiline = executable('test-paste-join-multiline', + files( + '../../src/fe-text/gui-entry.c', + '../../src/fe-text/gui-printtext.c', + '../../src/fe-text/gui-windows.c', + '../../src/fe-text/mainwindows.c', + '../../src/fe-text/term-terminfo.c', + '../../src/fe-text/term.c', + '../../src/fe-text/terminfo-core.c', + '../../src/fe-text/textbuffer-formats.c', + '../../src/fe-text/textbuffer-view.c', + '../../src/fe-text/textbuffer.c', + 'mock-irssi.c', + 'test-paste-join-multiline.c', + ), + link_with : [ + libconfig_a, + libcore_a, + libfe_common_core_a, + ], + c_args : [ + '-D' + 'PACKAGE_STRING' + '="' + 'fe-text' + '"', + ], + include_directories : rootinc, + implicit_include_directories : false, + dependencies : dep + textui_dep, +) +test('test-paste-join-multiline test', test_test_paste_join_multiline, + args : ['--tap'], + protocol : 'tap') + |