meson.build 170 B

123456
  1. project('try-static-library', 'fortran')
  2. static_hello = static_library('static_hello', 'static_hello.f95')
  3. executable('test_exe', 'main.f95', link_with : static_hello)