tests: skip framework recasting if CMake unavailable

pull/13433/head
Alyssa Ross 7 months ago committed by Jussi Pakkanen
parent 8e89a38737
commit 8a8a3a0578
  1. 4
      test cases/osx/9 framework recasting/meson.build

@ -1,5 +1,9 @@
project('framework recasting', 'c', 'cpp')
if not find_program('cmake', required: false).found()
error('MESON_SKIP_TEST cmake binary not available.')
endif
x = dependency('OpenAL', method: 'cmake')
y = executable('tt', files('main.cpp'), dependencies: x)

Loading…
Cancel
Save