summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-01-17 16:43:02 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-01-17 16:43:09 (GMT)
commit68e20f674a48be38d60e129f600faf7c483f2b97 (patch)
tree12eace6e569c0aa97f86f4405fdcbcdb75068adc /Source/cmake.cxx
parentbd3685b6cfac90bb553df0330e1732c066fe7dca (diff)
parent4568d046c46a7357ab48ddfb1117bad39e65572c (diff)
downloadCMake-68e20f674a48be38d60e129f600faf7c483f2b97.zip
CMake-68e20f674a48be38d60e129f600faf7c483f2b97.tar.gz
CMake-68e20f674a48be38d60e129f600faf7c483f2b97.tar.bz2
Merge topic 'cmake_role-global-property'
4568d046c4 Properties: Add CMAKE_ROLE global property Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2805
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index c65bd2e..9fcfbde 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -126,7 +126,7 @@ void cmWarnUnusedCliWarning(const std::string& variable, int /*unused*/,
cm->MarkCliAsUsed(variable);
}
-cmake::cmake(Role role)
+cmake::cmake(Role role, cmState::Mode mode)
{
this->Trace = false;
this->TraceExpand = false;
@@ -140,6 +140,7 @@ cmake::cmake(Role role)
this->FileComparison = new cmFileTimeComparison;
this->State = new cmState;
+ this->State->SetMode(mode);
this->CurrentSnapshot = this->State->CreateBaseSnapshot();
this->Messenger = new cmMessenger;
@@ -2023,7 +2024,8 @@ int cmake::CheckBuildSystem()
// Read the rerun check file and use it to decide whether to do the
// global generate.
- cmake cm(RoleScript); // Actually, all we need is the `set` command.
+ // Actually, all we need is the `set` command.
+ cmake cm(RoleScript, cmState::Unknown);
cm.SetHomeDirectory("");
cm.SetHomeOutputDirectory("");
cm.GetCurrentSnapshot().SetDefaultDefinitions();