2019-06-21 13:24:54 +08:00
|
|
|
project('Fortran coarray', 'fortran',
|
|
|
|
meson_version: '>=0.50')
|
2019-02-14 03:09:18 +08:00
|
|
|
|
|
|
|
# coarray is required because single-image fallback is an intrinsic feature
|
|
|
|
coarray = dependency('coarray', required : true)
|
|
|
|
|
|
|
|
exe = executable('hello', 'main.f90',
|
|
|
|
dependencies : coarray)
|
|
|
|
|
|
|
|
test('Coarray hello world', exe)
|
|
|
|
|