summaryrefslogtreecommitdiffstats
path: root/test cases/failing/80 gl dependency with version/meson.build
blob: 01270930242b51b75b2bd2de35abe499f036002e (plain)
1
2
3
4
5
6
7
8
9
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')