diff options
Diffstat (limited to 'Source/cmLocalXCodeGenerator.h')
-rw-r--r-- | Source/cmLocalXCodeGenerator.h | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/Source/cmLocalXCodeGenerator.h b/Source/cmLocalXCodeGenerator.h new file mode 100644 index 0000000..5c22dcf --- /dev/null +++ b/Source/cmLocalXCodeGenerator.h @@ -0,0 +1,44 @@ +/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying + file Copyright.txt or https://cmake.org/licensing for details. */ +#ifndef cmLocalXCodeGenerator_h +#define cmLocalXCodeGenerator_h + +#include "cmConfigure.h" // IWYU pragma: keep + +#include <map> +#include <string> + +#include "cmLocalGenerator.h" + +class cmGeneratorTarget; +class cmGlobalGenerator; +class cmMakefile; +class cmSourceFile; + +/** \class cmLocalXCodeGenerator + * \brief Write a local Xcode project + * + * cmLocalXCodeGenerator produces a LocalUnix makefile from its + * member Makefile. + */ +class cmLocalXCodeGenerator : public cmLocalGenerator +{ +public: + ///! Set cache only and recurse to false by default. + cmLocalXCodeGenerator(cmGlobalGenerator* gg, cmMakefile* mf); + + ~cmLocalXCodeGenerator() override; + std::string GetTargetDirectory( + cmGeneratorTarget const* target) const override; + void AppendFlagEscape(std::string& flags, + const std::string& rawFlag) const override; + void Generate() override; + virtual void GenerateInstallRules(); + void ComputeObjectFilenames( + std::map<cmSourceFile const*, std::string>& mapping, + cmGeneratorTarget const* gt = nullptr) override; + +private: +}; + +#endif |