Sign in
qemu
/
meson
/
refs/heads/revert5323
/
.
/
test cases
/
fortran
/
10 find library
/
meson.build
blob: be6688809b0227a2dbc86f30a03467477f97e036 [
file
] [
log
] [
blame
]
project
(
'find fortran library'
,
'fortran'
)
fortranc
=
meson
.
get_compiler
(
'fortran'
)
sources
=
[
'main.f90'
,
'gzip.f90'
]
zlib
=
fortranc
.
find_library
(
'z'
)
exe
=
executable
(
'zlibtest'
,
sources
,
dependencies
:
zlib
)
test
(
'testzlib'
,
exe
)