aboutsummaryrefslogtreecommitdiff
path: root/test cases/failing/112 cmake executable dependency/meson.build
blob: bfb03ef2041a84af2730f8563c25def0787d2d46 (plain)
1
2
3
4
5
6
7
8
9
project('cmake-executable-dependency', ['c', 'cpp'])

if not find_program('cmake', required: false).found()
  error('MESON_SKIP_TEST CMake is not installed')
endif

cmake = import('cmake')
cmlib = cmake.subproject('cmlib')
maind = cmlib.dependency('main')