meson.build 269 B

123456789101112131415
  1. project(
  2. 'gfx-examples',
  3. 'c',
  4. version : '0.0.1',
  5. license : 'MIT',
  6. meson_version : '>= 0.47',
  7. default_options : ['c_std=gnu99', 'warning_level=2']
  8. )
  9. if get_option('c_std') != 'gnu99'
  10. error('c_std must be gnu99')
  11. endif
  12. subdir('gtk01')
  13. subdir('wl-tester')