aboutsummaryrefslogtreecommitdiff
path: root/test cases/fortran/7 generated/meson.build
blob: cbdbe4ec6bb542337ff13a762f12ab96f81976d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Tests whether fortran sources files created during configuration are properly
# scanned for dependency information

project('generated', 'fortran')

conf_data = configuration_data()
conf_data.set('ONE', 1)
conf_data.set('TWO', 2)
conf_data.set('THREE', 3)

outfile = configure_file(
      input : 'mod3.fpp', output : 'mod3.f90', configuration : conf_data)
three = library('mod3', meson.current_build_dir() / 'mod3.f90')

templates_basenames = ['mod2', 'mod1']
generated_sources = []
foreach template_basename : templates_basenames
  infilename = '@0@.fpp'.format(template_basename)
  outfilename = '@0@.f90'.format(template_basename)
  outfile = configure_file(
      input : infilename, output : outfilename, configuration : conf_data)
  generated_sources += [outfile]
endforeach

sources = ['prog.f90'] + generated_sources
exe = executable('generated', sources, link_with: three)
test('generated', exe)