The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
345 B
10 lines
345 B
5 years ago
|
project('gl dependency with version', 'c')
|
||
|
|
||
|
host_system = host_machine.system()
|
||
|
if host_system != 'windows' and host_system != 'darwin'
|
||
|
error('MESON_SKIP_TEST: test only fails on Windows and OSX')
|
||
|
endif
|
||
|
|
||
|
# gl dependency found via system method doesn't have a meaningful version to check
|
||
|
dep = dependency('gl', method: 'system', version: '>0')
|