summaryrefslogtreecommitdiffstats
path: root/test cases/fortran/21 install static/meson.build
blob: b4d3e40b0c43035c8b046394fa5c8f7292a7de89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Based on 'fortran/5 static', but:
#   - Uses a subproject dependency
#   - Is an install:true static library to trigger certain codepath (promotion to link_whole)
#   - Does fortran code 'generation' with configure_file
#   - Uses .F90 ext (capital F typically denotes a dependence on preprocessor treatment, which however is not used)
project('try-static-subproject-dependency', 'fortran')

static_dep = dependency('static_hello', fallback: ['static_hello', 'static_hello_dep'])

mainsrc = 'main_lib.f90'
mainsrc = configure_file(
    copy: true,
    input: mainsrc,
    output: 'main_lib_output.F90'
)
main_lib = library('mainstatic', mainsrc, dependencies: static_dep, install: true)
main_dep = declare_dependency(link_with: main_lib)

main_exe = executable('main_exe', 'main.f90', dependencies: main_dep)
test('static_subproject_test', main_exe)