only test if Zlib found

pull/5524/head
Michael Hirsch, Ph.D 5 years ago
parent 1d6ed8cac8
commit 2c9725a4bb
  1. 8
      test cases/fortran/10 find library/meson.build

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

Loading…
Cancel
Save