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 /environment.py | |
| parent | cf212c16f59c49d863bd5b2fc51fa20adc8b8a9f (diff) | |
| download | meson-a3f88e1a495b03f70a1b92564eff949a14c1149b.tar.gz | |
Search for Boost libs in all lib dirs.
Diffstat (limited to 'environment.py')
| -rw-r--r-- | environment.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/environment.py b/environment.py index 0b7e3c61a..cb62a8bcc 100644 --- a/environment.py +++ b/environment.py @@ -940,6 +940,9 @@ class Environment(): return trial def get_library_dirs(self): + return get_library_dirs() + +def get_library_dirs(): if is_windows(): return ['C:/mingw/lib'] # Fixme if is_osx(): |
