summaryrefslogtreecommitdiffstats
path: root/test cases/fortran/5 static/meson.build
blob: ab9d3c4b4a8671df806a53abd1f1d014dbf423f1 (plain)
1
2
3
4
5
6
project('try-static-library', 'fortran')

static_hello = static_library('static_hello', 'static_hello.f90')

exe = executable('test_exe', 'main.f90', link_with : static_hello)
test('static-fortran', exe)