Skip test on VS earlier than 2015.

pull/1549/head
Jussi Pakkanen 8 years ago
parent d152c1b5d5
commit a718f1a334
  1. 8
      test cases/common/145 whole archive/meson.build

@ -1,5 +1,13 @@
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

Loading…
Cancel
Save