only test if Zlib found

This commit is contained in:
Michael Hirsch, Ph.D 2019-06-21 04:09:24 -04:00
parent 1d6ed8cac8
commit 2c9725a4bb
1 changed files with 6 additions and 2 deletions

View File

@ -1,9 +1,13 @@
project('find fortran library', 'fortran')
fortranc = meson.get_compiler('fortran')
fc = meson.get_compiler('fortran')
sources = ['main.f90', 'gzip.f90']
zlib = fortranc.find_library('z')
zlib = fc.find_library('z', required: false)
if not zlib.found()
error('MESON_SKIP_TEST: Z library not available.')
endif
exe = executable('zlibtest', sources, dependencies : zlib)
test('testzlib', exe)