mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2024-11-10 23:43:46 +01:00
25 lines
525 B
Meson
25 lines
525 B
Meson
check = dependency('check', required: false)
|
|
if check.found()
|
|
test_dependencies = [
|
|
declare_dependency(link_with: libzathura),
|
|
check
|
|
]
|
|
|
|
include_directories += [ include_directories('../zathura') ]
|
|
|
|
test_sources = [
|
|
'tests.c',
|
|
'test_document.c',
|
|
'test_session.c',
|
|
'test_utils.c'
|
|
]
|
|
|
|
tests = executable('tests', test_sources,
|
|
dependencies: build_dependencies + test_dependencies,
|
|
include_directories: include_directories,
|
|
c_args: defines + flags
|
|
)
|
|
|
|
test('tests', tests)
|
|
endif
|