diff options
Diffstat (limited to 'test cases/frameworks/35 boost symlinks/meson.build')
-rw-r--r-- | test cases/frameworks/35 boost symlinks/meson.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test cases/frameworks/35 boost symlinks/meson.build b/test cases/frameworks/35 boost symlinks/meson.build new file mode 100644 index 0000000..b49a143 --- /dev/null +++ b/test cases/frameworks/35 boost symlinks/meson.build @@ -0,0 +1,6 @@ +project('boosttestsymlinks', 'cpp') + +dep = dependency('boost', modules : ['regex', 'python'], required: false) + +assert(dep.found(), 'expected to find a fake version of boost') +assert(dep.version() == '0.3.0', 'expected to find version 0.3.0') |