mirror of
https://github.com/reactos/CMake.git
synced 2024-11-24 03:59:58 +00:00
735c6f39d9
In various places `///!` was used to start a comment line. This is not valid Doygen syntax. This patch replaces `///!` comment starts with `//!`.
45 lines
1.2 KiB
C++
45 lines
1.2 KiB
C++
/* 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
|