diff options
author | Gregor Jasny <gjasny@googlemail.com> | 2017-06-28 20:04:31 (GMT) |
---|---|---|
committer | Gregor Jasny <gjasny@googlemail.com> | 2017-06-28 20:06:49 (GMT) |
commit | 690cf2c1b200e0fa3de92ceb0b19c5130569ff81 (patch) | |
tree | d48b3935abc9030387e36c4eccccf274468d47ee /Source/cmXCodeScheme.h | |
parent | ff3498e76b73cd69fb851ff3acfb4f235dd197de (diff) | |
download | CMake-690cf2c1b200e0fa3de92ceb0b19c5130569ff81.zip CMake-690cf2c1b200e0fa3de92ceb0b19c5130569ff81.tar.gz CMake-690cf2c1b200e0fa3de92ceb0b19c5130569ff81.tar.bz2 |
Xcode: Prepare schema generator for XCTest
Issue: #16961
Diffstat (limited to 'Source/cmXCodeScheme.h')
-rw-r--r-- | Source/cmXCodeScheme.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmXCodeScheme.h b/Source/cmXCodeScheme.h index 379afed..d59f35b 100644 --- a/Source/cmXCodeScheme.h +++ b/Source/cmXCodeScheme.h @@ -26,8 +26,6 @@ public: private: const cmXCodeObject* const Target; const std::string& TargetName; - const std::string BuildableName; - const std::string& TargetId; const std::vector<std::string>& ConfigList; const unsigned int XcodeVersion; @@ -41,6 +39,9 @@ private: void WriteAnalyzeAction(cmXMLWriter& xout, std::string configuration); void WriteArchiveAction(cmXMLWriter& xout, std::string configuration); + void WriteBuildableReference(cmXMLWriter& xout, const cmXCodeObject* xcObj, + const std::string& container); + std::string WriteVersionString(); std::string FindConfiguration(const std::string& name); |