aboutsummaryrefslogtreecommitdiff
path: root/test cases
diff options
context:
space:
mode:
authorJussi Pakkanen <jpakkane@gmail.com>2013-08-11 22:55:40 +0300
committerJussi Pakkanen <jpakkane@gmail.com>2013-08-11 22:55:40 +0300
commita3f88e1a495b03f70a1b92564eff949a14c1149b (patch)
tree4128572b8c5c8612fb16c0ac3a9214dba45ca79e /test cases
parentcf212c16f59c49d863bd5b2fc51fa20adc8b8a9f (diff)
downloadmeson-a3f88e1a495b03f70a1b92564eff949a14c1149b.zip
meson-a3f88e1a495b03f70a1b92564eff949a14c1149b.tar.gz
meson-a3f88e1a495b03f70a1b92564eff949a14c1149b.tar.bz2
Search for Boost libs in all lib dirs.
Diffstat (limited to 'test cases')
-rw-r--r--test cases/frameworks/1 boost/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/test cases/frameworks/1 boost/meson.build b/test cases/frameworks/1 boost/meson.build
index 033cb22..896225f 100644
--- a/test cases/frameworks/1 boost/meson.build
+++ b/test cases/frameworks/1 boost/meson.build
@@ -5,7 +5,7 @@ project('boosttest', 'cpp')
# Use one without a library dependency and one with it.
nolinkdep = dependency('boost', modules: 'utility')
-linkdep = dependency('boost', modules : 'thread')
+linkdep = dependency('boost', modules : ['thread', 'system'])
nolinkexe = executable('nolinkedexe', 'nolinkexe.cc', deps : nolinkdep)
linkexe = executable('linkedexe', 'linkexe.cc', deps : linkdep)