aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/project/cmake
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2021-05-06 23:32:11 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2021-05-06 23:32:11 +0300
commit25689dbab5aa7cf8bcc3607e58e049cc1103dc93 (patch)
tree562b1d8d3694a42fd54b75b19cdb603e13cdbcc8 /project/cmake
parentfix PyLint warnings (diff)
downloadcmake-common-25689dbab5aa7cf8bcc3607e58e049cc1103dc93.tar.gz
cmake-common-25689dbab5aa7cf8bcc3607e58e049cc1103dc93.zip
"toolchain" -> "toolset", part 1
Diffstat (limited to 'project/cmake')
-rw-r--r--project/cmake/build.py4
-rw-r--r--project/cmake/toolset.py (renamed from project/cmake/toolchain.py)2
2 files changed, 3 insertions, 3 deletions
diff --git a/project/cmake/build.py b/project/cmake/build.py
index 74eb820..b6f3e85 100644
--- a/project/cmake/build.py
+++ b/project/cmake/build.py
@@ -27,10 +27,10 @@ import os.path
import sys
import tempfile
-from project.cmake.toolchain import Toolchain
+from project.cmake.toolset import Toolchain
from project.configuration import Configuration
from project.platform import Platform
-from project.toolchain import ToolchainType
+from project.toolset import ToolchainType
from project.utils import normalize_path, mkdir_parent, run, setup_logging
diff --git a/project/cmake/toolchain.py b/project/cmake/toolset.py
index c12ee84..0bf8e64 100644
--- a/project/cmake/toolchain.py
+++ b/project/cmake/toolset.py
@@ -12,7 +12,7 @@ import shutil
import project.mingw
from project.os import on_windows
from project.platform import Platform
-from project.toolchain import ToolchainType
+from project.toolset import ToolchainType
class Toolchain(abc.ABC):