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.
9 lines
328 B
9 lines
328 B
project('gl dependency with version', 'c') |
|
|
|
host_system = host_machine.system() |
|
if host_system != 'windows' and host_system != 'darwin' |
|
error('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')
|
|
|