2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2004-2009 Kitware, Inc.
|
|
|
|
Copyright 2004 Alexander Neundorf (neundorf@kde.org)
|
|
|
|
|
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2007-07-13 08:58:43 +04:00
|
|
|
#ifndef cmExtraCodeBlocksGenerator_h
|
|
|
|
#define cmExtraCodeBlocksGenerator_h
|
|
|
|
|
|
|
|
#include "cmExternalMakefileProjectGenerator.h"
|
|
|
|
|
|
|
|
class cmLocalGenerator;
|
|
|
|
class cmMakefile;
|
2007-08-29 18:12:09 +04:00
|
|
|
class cmTarget;
|
2007-11-25 15:45:18 +03:00
|
|
|
class cmGeneratedFileStream;
|
2007-07-13 08:58:43 +04:00
|
|
|
|
|
|
|
/** \class cmExtraCodeBlocksGenerator
|
|
|
|
* \brief Write CodeBlocks project files for Makefile based projects
|
|
|
|
*/
|
|
|
|
class cmExtraCodeBlocksGenerator : public cmExternalMakefileProjectGenerator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
cmExtraCodeBlocksGenerator();
|
|
|
|
|
|
|
|
virtual const char* GetName() const
|
2007-07-20 16:36:16 +04:00
|
|
|
{ return cmExtraCodeBlocksGenerator::GetActualName();}
|
|
|
|
static const char* GetActualName() { return "CodeBlocks";}
|
2010-11-12 00:02:07 +03:00
|
|
|
static cmExternalMakefileProjectGenerator* New()
|
2007-07-20 16:36:16 +04:00
|
|
|
{ return new cmExtraCodeBlocksGenerator; }
|
2007-07-13 08:58:43 +04:00
|
|
|
/** Get the documentation entry for this generator. */
|
2010-11-12 00:02:07 +03:00
|
|
|
virtual void GetDocumentation(cmDocumentationEntry& entry,
|
2007-07-13 08:58:43 +04:00
|
|
|
const char* fullName) const;
|
|
|
|
|
|
|
|
virtual void Generate();
|
|
|
|
private:
|
|
|
|
|
|
|
|
void CreateProjectFile(const std::vector<cmLocalGenerator*>& lgs);
|
|
|
|
|
|
|
|
void CreateNewProjectFile(const std::vector<cmLocalGenerator*>& lgs,
|
|
|
|
const std::string& filename);
|
2012-04-09 16:53:47 +04:00
|
|
|
std::string CreateDummyTargetFile(cmMakefile* mf, cmTarget* target) const;
|
|
|
|
|
2007-08-29 18:12:09 +04:00
|
|
|
std::string GetCBCompilerId(const cmMakefile* mf);
|
|
|
|
int GetCBTargetType(cmTarget* target);
|
2010-11-12 00:02:07 +03:00
|
|
|
std::string BuildMakeCommand(const std::string& make, const char* makefile,
|
2007-08-29 18:12:09 +04:00
|
|
|
const char* target);
|
2007-11-25 15:45:18 +03:00
|
|
|
void AppendTarget(cmGeneratedFileStream& fout,
|
|
|
|
const char* targetName,
|
|
|
|
cmTarget* target,
|
|
|
|
const char* make,
|
|
|
|
const cmMakefile* makefile,
|
|
|
|
const char* compiler);
|
2007-07-13 08:58:43 +04:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|