We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 491ea2a commit d27c01dCopy full SHA for d27c01d
1 file changed
tests/packages/cmake-subproject/meson.build
@@ -4,7 +4,11 @@
4
5
project('cmake-subproject', ['c', 'cpp', 'cython'], version: '1')
6
7
-dep = dependency('cmaketest')
+if meson.version().version_compare('>= 1.3.0')
8
+ dep = dependency('cmaketest')
9
+else
10
+ dep = import('cmake').subproject('cmaketest').dependency('cmaketest')
11
+endif
12
13
py = import('python').find_installation()
14
0 commit comments