summaryrefslogtreecommitdiffstats
path: root/Source/cmXCodeScheme.h
diff options
context:
space:
mode:
authorGusts Kaksis <gkaksis@whitecryption.com>2017-01-18 14:20:09 (GMT)
committerBrad King <brad.king@kitware.com>2017-02-28 14:21:54 (GMT)
commitffb8817b370937b02c384d9d1fd91c4e9d799553 (patch)
treecf7043a8a1080042d3c6e2954600af896c9fdf90 /Source/cmXCodeScheme.h
parent32cb4172bd6b98810f9638076e978a6bc569f6ae (diff)
downloadCMake-ffb8817b370937b02c384d9d1fd91c4e9d799553.zip
CMake-ffb8817b370937b02c384d9d1fd91c4e9d799553.tar.gz
CMake-ffb8817b370937b02c384d9d1fd91c4e9d799553.tar.bz2
Xcode: Write shared schemes based on the default files generated by Xcode
Issue: #15441
Diffstat (limited to 'Source/cmXCodeScheme.h')
-rw-r--r--Source/cmXCodeScheme.h46
1 files changed, 46 insertions, 0 deletions
diff --git a/Source/cmXCodeScheme.h b/Source/cmXCodeScheme.h
new file mode 100644
index 0000000..b174c51
--- /dev/null
+++ b/Source/cmXCodeScheme.h
@@ -0,0 +1,46 @@
+/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
+ file Copyright.txt or https://cmake.org/licensing for details. */
+#ifndef cmXCodeScheme_h
+#define cmXCodeScheme_h
+
+#include <cmConfigure.h> // IWYU pragma: keep
+
+#include "cmGlobalXCodeGenerator.h"
+#include "cmSystemTools.h"
+#include "cmXCodeObject.h"
+#include "cmXMLWriter.h"
+
+/** \class cmXCodeScheme
+ * \brief Write shared schemes for native targets in Xcode project.
+ */
+class cmXCodeScheme
+{
+public:
+ cmXCodeScheme(cmXCodeObject* xcObj,
+ const std::vector<std::string>& configList,
+ unsigned int xcVersion);
+
+ void WriteXCodeSharedScheme(const std::string& xcProjDir,
+ const std::string sourceRoot);
+
+private:
+ const std::string& TargetName;
+ const std::string& TargetId;
+ const std::vector<std::string>& ConfigList;
+ const unsigned int XcodeVersion;
+
+ void WriteXCodeXCScheme(std::ostream& fout, const std::string& xcProjDir);
+
+ void WriteBuildAction(cmXMLWriter& xout, const std::string& xcProjDir);
+ void WriteTestAction(cmXMLWriter& xout, std::string configuration);
+ void WriteLaunchAction(cmXMLWriter& xout, std::string configuration,
+ const std::string& xcProjDir);
+ void WriteProfileAction(cmXMLWriter& xout, std::string configuration);
+ void WriteAnalyzeAction(cmXMLWriter& xout, std::string configuration);
+ void WriteArchiveAction(cmXMLWriter& xout, std::string configuration);
+
+ std::string WriteVersionString();
+ std::string FindConfiguration(const std::string& name);
+};
+
+#endif