summaryrefslogtreecommitdiff
path: root/test cases/frameworks/1 boost
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-06-01 14:06:36 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-06-01 14:06:36 +0300
commit852b774e2e15c5f7912fa035d1d6927acd044ef7 (patch)
tree2224d246390d928d0bd7e223e8584cbc3f1a2af5 /test cases/frameworks/1 boost
parent0d2f34654c09def726e3b1d978c45c41a4f08500 (diff)
downloadmeson-852b774e2e15c5f7912fa035d1d6927acd044ef7.tar.gz
The default value of required is true for dependencies.
Diffstat (limited to 'test cases/frameworks/1 boost')
-rw-r--r--test cases/frameworks/1 boost/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/test cases/frameworks/1 boost/meson.build b/test cases/frameworks/1 boost/meson.build
index 4bd5582e8..82a5e5404 100644
--- a/test cases/frameworks/1 boost/meson.build
+++ b/test cases/frameworks/1 boost/meson.build
@@ -4,8 +4,8 @@ project('boosttest', 'cxx')
# within one project. The need to be independent of each other.
# Use one without a library dependency and one with it.
-nolinkdep = find_dep('boost', modules: 'utility', required : true)
-linkdep = find_dep('boost', modules : 'thread', required : true)
+nolinkdep = find_dep('boost', modules: 'utility')
+linkdep = find_dep('boost', modules : 'thread')
nolinkexe = executable('nolinkedexe', 'nolinkexe.cc', deps : nolinkdep)
linkexe = executable('linkedexe', 'linkexe.cc', deps : linkdep)