diff options
author | Benjamin Redelings <benjamin.redelings@gmail.com> | 2017-12-31 08:15:40 -0800 |
---|---|---|
committer | Benjamin Redelings <benjamin.redelings@gmail.com> | 2018-01-01 22:42:49 -0800 |
commit | 075e2d4154ffa2e416a84f68073e5e2da7784d7f (patch) | |
tree | 9637d1fc8b054c5d17e0ee05017130f4dba6101b | |
parent | a12d47984ed02e0b10901a0d56f4844e61e06c7e (diff) | |
download | meson-075e2d4154ffa2e416a84f68073e5e2da7784d7f.zip meson-075e2d4154ffa2e416a84f68073e5e2da7784d7f.tar.gz meson-075e2d4154ffa2e416a84f68073e5e2da7784d7f.tar.bz2 |
Add todo comments.
-rw-r--r-- | mesonbuild/dependencies/misc.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mesonbuild/dependencies/misc.py b/mesonbuild/dependencies/misc.py index f8be85e..43412dd 100644 --- a/mesonbuild/dependencies/misc.py +++ b/mesonbuild/dependencies/misc.py @@ -93,6 +93,14 @@ from .base import ( # 2.1. Search particular directories. # 2.2. Find boost libraries with unknown suffixes using file-name globbing. +# TODO: Unix: Don't assume we know where the boost dir is, rely on -Idir and -Ldir being set. +# TODO: Determine a suffix (e.g. "-mt" or "") and use it. +# TODO: Get_win_link_args( ) and get_link_args( ) +# TODO: Genericize: 'args += ['-L' + dir] => args += self.compiler.get_linker_search_args(dir) +# TODO: Allow user to specify suffix in BOOST_SUFFIX, or add specific options like BOOST_DEBUG for 'd' for debug. +# TODO: fix cross: +# is_windows() -> for_windows(self.want_cross, self.env) +# is_osx() and self.want_cross -> for_darwin(self.want_cross, self.env) class BoostDependency(ExternalDependency): def __init__(self, environment, kwargs): |