summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalXCodeGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2020-07-16 18:17:14 (GMT)
committerBrad King <brad.king@kitware.com>2020-07-16 18:17:47 (GMT)
commitce624cfbd4fcbf5c486850ac331fa1e1dba28f8b (patch)
tree1aa52f2da866901d99a6074bd08b9d91ebcd4c2b /Source/cmGlobalXCodeGenerator.cxx
parentd421274e3e11a0e6480358faa8a8e5cf48d7b3c2 (diff)
downloadCMake-ce624cfbd4fcbf5c486850ac331fa1e1dba28f8b.zip
CMake-ce624cfbd4fcbf5c486850ac331fa1e1dba28f8b.tar.gz
CMake-ce624cfbd4fcbf5c486850ac331fa1e1dba28f8b.tar.bz2
cmGlobalXCodeGenerator: Save CMAKE_SYSTEM_NAME in member
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.cxx')
-rw-r--r--Source/cmGlobalXCodeGenerator.cxx7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index a5ce5d1..e006be2 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -271,6 +271,13 @@ std::string cmGlobalXCodeGenerator::FindXcodeBuildCommand()
return makeProgram;
}
+bool cmGlobalXCodeGenerator::SetSystemName(std::string const& s,
+ cmMakefile* mf)
+{
+ this->SystemName = s;
+ return this->cmGlobalGenerator::SetSystemName(s, mf);
+}
+
bool cmGlobalXCodeGenerator::SetGeneratorToolset(std::string const& ts,
bool build, cmMakefile* mf)
{