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

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')