1
0
mirror of https://github.com/irssi/irssi.git synced 2024-06-30 06:45:25 +00:00
irssi/tests/fe-text/meson.build
ailin-nemui f95fc81130 make lines reformattable
- completely removed the old textbuffer representation (
  https://github.com/shabble/irssi-docs/wiki/Notes-256-Colour#textbuffer-encoding
  )

- textbuffer-formats is an extra module, so if we unhook the signals it
  should go back to the "old way" of storing pre-rendered tex

- design uses cache, original formats and list of arguments
2020-04-26 18:54:16 +02:00

32 lines
911 B
Meson

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')