The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
481 B
16 lines
481 B
5 years ago
|
project('Fortran calling C', 'fortran', 'c',
|
||
|
meson_version: '>= 0.51.0',
|
||
|
default_options : ['default_library=static'])
|
||
|
|
||
|
ccid = meson.get_compiler('c').get_id()
|
||
|
if ccid == 'msvc' or ccid == 'clang-cl'
|
||
|
error('MESON_SKIP_TEST: MSVC and GCC do not interoperate like this.')
|
||
|
endif
|
||
|
|
||
|
c_lib = library('clib', 'clib.c', vs_module_defs : 'clib.def')
|
||
|
|
||
|
f_call_c = executable('f_call_c', 'f_call_c.f90',
|
||
|
link_with: c_lib,
|
||
|
link_language: 'fortran')
|
||
|
test('Fortran calling C', f_call_c)
|