diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2013-08-11 22:55:40 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2013-08-11 22:55:40 +0300 |
commit | a3f88e1a495b03f70a1b92564eff949a14c1149b (patch) | |
tree | 4128572b8c5c8612fb16c0ac3a9214dba45ca79e /test cases | |
parent | cf212c16f59c49d863bd5b2fc51fa20adc8b8a9f (diff) | |
download | meson-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.build | 2 |
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) |