diff options
author | Brad King <brad.king@kitware.com> | 2017-04-05 18:00:27 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-04-11 15:40:15 (GMT) |
commit | 5f4e26dfc8c4ae26e9226236a05d20b826100db9 (patch) | |
tree | 78f80c0969df41167b08adbc8c81a87f673c8dc0 /Source/cmGlobalXCodeGenerator.h | |
parent | 5b29fd6d4df4eea8ac04a3f6287f721e28b6b5b4 (diff) | |
download | CMake-5f4e26dfc8c4ae26e9226236a05d20b826100db9.zip CMake-5f4e26dfc8c4ae26e9226236a05d20b826100db9.tar.gz CMake-5f4e26dfc8c4ae26e9226236a05d20b826100db9.tar.bz2 |
Xcode: Refactor object directory name computation
Factor out a helper function to compute the object directory name
architecture component.
Diffstat (limited to 'Source/cmGlobalXCodeGenerator.h')
-rw-r--r-- | Source/cmGlobalXCodeGenerator.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGlobalXCodeGenerator.h b/Source/cmGlobalXCodeGenerator.h index beb789b..2cd9985 100644 --- a/Source/cmGlobalXCodeGenerator.h +++ b/Source/cmGlobalXCodeGenerator.h @@ -241,6 +241,7 @@ private: const cmGeneratorTarget* t) const; void ComputeArchitectures(cmMakefile* mf); + void ComputeObjectDirArch(); void addObject(cmXCodeObject* obj); std::string PostBuildMakeTarget(std::string const& tName, @@ -263,6 +264,7 @@ private: std::map<std::string, cmXCodeObject*> FileRefs; std::map<cmGeneratorTarget const*, cmXCodeObject*> XCodeObjectMap; std::vector<std::string> Architectures; + std::string ObjectDirArch; std::string GeneratorToolset; }; |