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.
22 lines
509 B
22 lines
509 B
project('whole archive', 'c') |
|
|
|
cc = meson.get_compiler('c') |
|
|
|
if cc.get_id() == 'msvc' |
|
if cc.version().version_compare('<19') |
|
error('MESON_SKIP_TEST link_whole only works on VS2015 or newer.') |
|
endif |
|
endif |
|
|
|
stlib = static_library('allofme', 'libfile.c') |
|
|
|
# Nothing in dylib.c uses func1, so the linker would throw it |
|
# away and thus linking the exe would fail. |
|
dylib = shared_library('shlib', 'dylib.c', |
|
link_whole : stlib) |
|
|
|
exe = executable('prog', 'prog.c', |
|
link_with : dylib) |
|
|
|
test('prog', exe) |
|
|
|
|