mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
meson build support
This commit is contained in:
parent
fb85fdec5c
commit
db16a0a853
57 changed files with 1787 additions and 46 deletions
19
tests/fe-common/core/meson.build
Normal file
19
tests/fe-common/core/meson.build
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
test_test_formats = executable('test-formats',
|
||||
files(
|
||||
'test-formats.c',
|
||||
),
|
||||
link_with : [
|
||||
libconfig_a,
|
||||
libcore_a,
|
||||
libfe_common_core_a,
|
||||
],
|
||||
c_args : [
|
||||
'-D' + 'PACKAGE_STRING' + '="' + 'fe-common/core' + '"',
|
||||
],
|
||||
include_directories : rootinc,
|
||||
implicit_include_directories : false,
|
||||
dependencies : dep
|
||||
)
|
||||
test('test-formats test', test_test_formats,
|
||||
args : ['--tap'],
|
||||
protocol : 'tap')
|
||||
1
tests/fe-common/meson.build
Normal file
1
tests/fe-common/meson.build
Normal file
|
|
@ -0,0 +1 @@
|
|||
subdir('core')
|
||||
Loading…
Add table
Add a link
Reference in a new issue