summaryrefslogtreecommitdiffstats
path: root/test cases/fortran/12 submodule/meson.build
blob: 204a36b4403f4f70dfef0cbe14dd44d38bfb82c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
project('submodule single level', 'fortran',
  meson_version: '>= 0.50.0')

fortc = meson.get_compiler('fortran')
if fortc.get_id() == 'gcc' and fortc.version().version_compare('<6.0')
  error('MESON_SKIP_TEST need gfortran >= 6.0 for submodule support')
endif

hier2 = executable('single', 'parent.f90', 'child.f90')
test('single-level hierarchy', hier2)

hierN = executable('multi', 'a1.f90', 'a2.f90', 'a3.f90')
test('multi-level hierarchy', hierN)