meson.build 589 B

123456789101112131415
  1. project('header in file list', 'c')
  2. cc_id = meson.get_compiler('c').get_id()
  3. cc_ver = meson.get_compiler('c').version()
  4. if cc_id == 'intel' or (cc_id == 'lcc' and cc_ver.version_compare('<=1.23.08'))
  5. # ICC and LCC <= 1.23.08 do not escape spaces in paths in the dependency file, so Ninja
  6. # (correctly) thinks that the rule has multiple outputs and errors out:
  7. # 'depfile has multiple output paths'
  8. error('MESON_SKIP_TEST: Skipping test because your compiler is known to generate broken dependency files')
  9. endif
  10. exe = executable('prog', 'prog.c', 'header.h')
  11. test('basic', exe)