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.
25 lines
574 B
25 lines
574 B
4 years ago
|
project('rust linking to libm', 'c', 'rust')
|
||
|
|
||
|
if host_machine.system() == 'darwin'
|
||
|
error('MESON_SKIP_TEST: doesnt work right on macos, please fix!')
|
||
|
endif
|
||
|
|
||
|
cc = meson.get_compiler('c')
|
||
|
dep_m = cc.find_library('m', required : false, static : get_option('static'))
|
||
|
if not dep_m.found()
|
||
|
error('MESON_SKIP_TEST: Could not find a @0@ libm'.format(get_option('static') ? 'static' : 'shared'))
|
||
|
endif
|
||
|
|
||
|
librs_math = static_library(
|
||
|
'rs_math',
|
||
|
'rs_math.rs',
|
||
|
dependencies : [dep_m],
|
||
|
)
|
||
|
|
||
|
e = executable(
|
||
|
'prog', 'prog.rs',
|
||
|
link_with : [librs_math],
|
||
|
)
|
||
|
|
||
|
test('cdepstest', e)
|