Add comment.

This commit is contained in:
Benjamin Redelings 2018-02-08 09:43:50 -05:00
parent 52775ecb14
commit ab37727289
1 changed files with 1 additions and 0 deletions

View File

@ -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"