diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2017-02-24 16:31:24 (GMT) |
---|---|---|
committer | Gregor Jasny <gjasny@googlemail.com> | 2017-02-28 21:38:29 (GMT) |
commit | 7202db5db46bfe7499244af315249820e883c8cf (patch) | |
tree | 319c16d7693ec22fc0af46337c0610bcc30a4f38 /Source/cmXCodeScheme.h | |
parent | 5995082101a1959f303f9f3d6c0a1e483630749e (diff) | |
download | CMake-7202db5db46bfe7499244af315249820e883c8cf.zip CMake-7202db5db46bfe7499244af315249820e883c8cf.tar.gz CMake-7202db5db46bfe7499244af315249820e883c8cf.tar.bz2 |
Xcode: Fix schema container location calculation
Diffstat (limited to 'Source/cmXCodeScheme.h')
-rw-r--r-- | Source/cmXCodeScheme.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmXCodeScheme.h b/Source/cmXCodeScheme.h index b174c51..7a7d930 100644 --- a/Source/cmXCodeScheme.h +++ b/Source/cmXCodeScheme.h @@ -21,7 +21,7 @@ public: unsigned int xcVersion); void WriteXCodeSharedScheme(const std::string& xcProjDir, - const std::string sourceRoot); + const std::string& container); private: const std::string& TargetName; @@ -29,12 +29,12 @@ private: const std::vector<std::string>& ConfigList; const unsigned int XcodeVersion; - void WriteXCodeXCScheme(std::ostream& fout, const std::string& xcProjDir); + void WriteXCodeXCScheme(std::ostream& fout, const std::string& container); - void WriteBuildAction(cmXMLWriter& xout, const std::string& xcProjDir); + void WriteBuildAction(cmXMLWriter& xout, const std::string& container); void WriteTestAction(cmXMLWriter& xout, std::string configuration); void WriteLaunchAction(cmXMLWriter& xout, std::string configuration, - const std::string& xcProjDir); + const std::string& container); void WriteProfileAction(cmXMLWriter& xout, std::string configuration); void WriteAnalyzeAction(cmXMLWriter& xout, std::string configuration); void WriteArchiveAction(cmXMLWriter& xout, std::string configuration); |