blob: a308239fc7cfad66d9e8b47b7e8ea6a5613555d1 (
plain)
1
2
3
4
5
6
7
8
|
project('cmake-executable-dependency')
if not find_program('cmake', required: false).found()
error('MESON_SKIP_TEST CMake is not installed')
endif
cmake = import('cmake')
cmlib = cmake.subproject('cmlib')
|