diff options
| author | Benjamin Redelings <benjamin.redelings@gmail.com> | 2018-02-08 09:43:50 -0500 |
|---|---|---|
| committer | Benjamin Redelings <benjamin.redelings@gmail.com> | 2018-02-08 09:43:50 -0500 |
| commit | ab377272891a9320ca53d213c15ee44e85755db5 (patch) | |
| tree | f6bed0718440b40581f342c577789afbda866131 | |
| parent | 52775ecb14c4f5ebdeabd9284c4dd50041f1ac9d (diff) | |
| download | meson-ab377272891a9320ca53d213c15ee44e85755db5.tar.gz | |
Add comment.
| -rw-r--r-- | mesonbuild/dependencies/misc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mesonbuild/dependencies/misc.py b/mesonbuild/dependencies/misc.py index c72cc83dd..8511b46b2 100644 --- a/mesonbuild/dependencies/misc.py +++ b/mesonbuild/dependencies/misc.py @@ -106,6 +106,7 @@ class BoostDependency(ExternalDependency): def __init__(self, environment, kwargs): super().__init__('boost', environment, 'cpp', kwargs) self.need_static_link = ['boost_exception', 'boost_test_exec_monitor'] + # FIXME: is this the right way to find the build type? self.is_debug = environment.cmd_line_options.buildtype.startswith('debug') threading = kwargs.get("threading", "multi") self.is_multithreading = threading == "multi" |
