diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-03-18 14:23:06 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-20 18:45:56 +0200 |
commit | ac627bcea723b12e17822c18cccc9dbdeaee8b8f (patch) | |
tree | 66999769a73d0f923389f1d2ddec898421a204a1 /mesonbuild/interpreter.py | |
parent | 44dd5535f056922294867bac2eb07b57f21bede6 (diff) | |
download | meson-ac627bcea723b12e17822c18cccc9dbdeaee8b8f.zip meson-ac627bcea723b12e17822c18cccc9dbdeaee8b8f.tar.gz meson-ac627bcea723b12e17822c18cccc9dbdeaee8b8f.tar.bz2 |
replace library type strings with an enum
This patch creates an enum for selecting libtype as static, shared,
prefer-static, or prefer-shared. This also renames 'static-shared'
with 'prefer_static' and 'shared-static' with 'prefer_shared'. This is
just a refactor with no behavioral changes or user facing changes.
Diffstat (limited to 'mesonbuild/interpreter.py')
-rw-r--r-- | mesonbuild/interpreter.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mesonbuild/interpreter.py b/mesonbuild/interpreter.py index 3c3cfae..5d8d071 100644 --- a/mesonbuild/interpreter.py +++ b/mesonbuild/interpreter.py @@ -1493,11 +1493,11 @@ class CompilerHolder(InterpreterObject): for i in search_dirs: if not os.path.isabs(i): raise InvalidCode('Search directory %s is not an absolute path.' % i) - libtype = 'shared-static' + libtype = mesonlib.LibType.PREFER_SHARED if 'static' in kwargs: if not isinstance(kwargs['static'], bool): raise InterpreterException('static must be a boolean') - libtype = 'static' if kwargs['static'] else 'shared' + libtype = mesonlib.LibType.STATIC if kwargs['static'] else mesonlib.LibType.SHARED linkargs = self.compiler.find_library(libname, self.environment, search_dirs, libtype) if required and not linkargs: raise InterpreterException( |