diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-11-02 19:41:48 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2017-11-11 23:06:48 +0530 |
commit | d2a250412c208a38a4c82a8b2615aad90dc15df9 (patch) | |
tree | 5bed892a787aabebccd6e61d552bb276a57b0e18 /mesonbuild/dependencies/ui.py | |
parent | 4405a1297b2d76849b40843f8456d8c086c46516 (diff) | |
download | meson-d2a250412c208a38a4c82a8b2615aad90dc15df9.zip meson-d2a250412c208a38a4c82a8b2615aad90dc15df9.tar.gz meson-d2a250412c208a38a4c82a8b2615aad90dc15df9.tar.bz2 |
compilers: Improve manual library searching
We can now specify the library type we want to search for, and whether
we want to prefer static libraries over shared ones or the other way
around. This functionality is not exposed to build files yet.
Diffstat (limited to 'mesonbuild/dependencies/ui.py')
-rw-r--r-- | mesonbuild/dependencies/ui.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mesonbuild/dependencies/ui.py b/mesonbuild/dependencies/ui.py index 8f183e5..3412dc6 100644 --- a/mesonbuild/dependencies/ui.py +++ b/mesonbuild/dependencies/ui.py @@ -23,8 +23,9 @@ from collections import OrderedDict from .. import mlog from .. import mesonlib -from ..mesonlib import MesonException, Popen_safe, version_compare, extract_as_list -from ..environment import for_windows, detect_cpu +from ..mesonlib import MesonException, Popen_safe, version_compare +from ..mesonlib import extract_as_list, for_windows +from ..environment import detect_cpu from .base import DependencyException, DependencyMethods from .base import ExternalDependency, ExternalProgram |