mirror of
https://github.com/thead-yocto-mirror/gfx-examples
synced 2026-06-21 08:52:37 +02:00
16 lines
269 B
Meson
16 lines
269 B
Meson
project(
|
|
'gfx-examples',
|
|
'c',
|
|
version : '0.0.1',
|
|
license : 'MIT',
|
|
meson_version : '>= 0.47',
|
|
default_options : ['c_std=gnu99', 'warning_level=2']
|
|
)
|
|
|
|
if get_option('c_std') != 'gnu99'
|
|
error('c_std must be gnu99')
|
|
endif
|
|
|
|
subdir('gtk01')
|
|
subdir('wl-tester')
|