summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx13
1 files changed, 9 insertions, 4 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index 007f52d..cb68f221 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -380,10 +380,7 @@ bool cmake::SetCacheArgs(const std::vector<std::string>& args)
"No help, variable specified on the command line.", type);
if(this->WarnUnusedCli)
{
-#ifdef CMAKE_BUILD_WITH_CMAKE
- this->VariableWatch->AddWatch(var, cmWarnUnusedCliWarning, this);
- this->UsedCliVariables[var] = false;
-#endif
+ this->WatchUnusedCli(var.c_str());
}
}
else
@@ -4488,6 +4485,14 @@ int cmake::Build(const std::string& dir,
0, nativeOptions);
}
+void cmake::WatchUnusedCli(const char* var)
+{
+#ifdef CMAKE_BUILD_WITH_CMAKE
+ this->VariableWatch->AddWatch(var, cmWarnUnusedCliWarning, this);
+ this->UsedCliVariables[var] = false;
+#endif
+}
+
void cmake::RunCheckForUnusedVariables() const
{
#ifdef CMAKE_BUILD_WITH_CMAKE