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.
8 lines
272 B
8 lines
272 B
11 years ago
|
project('linker script', 'c')
|
||
|
|
||
|
vflag = '-Wl,--version-script,@0@/bob.map'.format('/home/jpakkane/workspace/meson/test cases/linuxlike/3 linker script')
|
||
|
|
||
|
l = shared_library('bob', 'bob.c', link_flags : vflag)
|
||
|
e = executable('prog', 'prog.c', link_with : l)
|
||
|
test('core', e)
|