meson.build 290 B

1234567891011
  1. project('subproj lib install', 'c',
  2. version : '2.3.4',
  3. license : 'mylicense')
  4. if host_machine.system() == 'cygwin'
  5. error('MESON_SKIP_TEST linuxlike soversions not supported on Cygwin.')
  6. endif
  7. # Test that the subproject library gets installed
  8. subproject('sublib', version : '1.0.0')