Skip to content

Commit

Permalink
Merge pull request #4 from AtilaSaraiva/meson
Browse files Browse the repository at this point in the history
Added meson builder support
  • Loading branch information
jchristopherson authored Oct 31, 2021
2 parents 3eeea74 + a5b5371 commit e9a7359
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
project('ferror', 'fortran')

sources = files('src/ferror_c_binding.f90',
'src/ferror.f90')

ferror_lib = static_library('ferror',sources)
ferror_dep = declare_dependency(link_with: ferror_lib)

0 comments on commit e9a7359

Please sign in to comment.