diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-06 23:53:36 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-05-06 23:53:36 +0300 |
commit | 128f995b4dbcebbf90d9efa7deea4f62f35904fd (patch) | |
tree | a342729b2637789becd219da8e17e7c6902a0dec /project/boost | |
parent | "toolchain" -> "toolset", part 2 (diff) | |
download | cmake-common-128f995b4dbcebbf90d9efa7deea4f62f35904fd.tar.gz cmake-common-128f995b4dbcebbf90d9efa7deea4f62f35904fd.zip |
brush up import lists
Diffstat (limited to 'project/boost')
-rw-r--r-- | project/boost/build.py | 4 | ||||
-rw-r--r-- | project/boost/directory.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/project/boost/build.py b/project/boost/build.py index 565610a..e5c9415 100644 --- a/project/boost/build.py +++ b/project/boost/build.py @@ -31,12 +31,12 @@ import sys import tempfile from project.boost.directory import BoostDir -from project.toolset import ToolsetHint from project.boost.toolset import Toolset from project.configuration import Configuration from project.linkage import Linkage -from project.platform import Platform from project.os import on_linux_like +from project.platform import Platform +from project.toolset import ToolsetHint from project.utils import normalize_path, setup_logging diff --git a/project/boost/directory.py b/project/boost/directory.py index be660ab..7cb5af8 100644 --- a/project/boost/directory.py +++ b/project/boost/directory.py @@ -7,8 +7,8 @@ import logging import os.path from project.boost.toolset import Toolset -from project.utils import cd, run from project.os import on_windows +from project.utils import cd, run class BoostDir: |