cmake/Source/cmExtraCodeLiteGenerator.h

55 lines
2.1 KiB
C
Raw Normal View History

2014-08-03 19:52:23 +02:00
/*============================================================================
CMake - Cross Platform Makefile Generator
Copyright 2004-2009 Kitware, Inc.
Copyright 2004 Alexander Neundorf (neundorf@kde.org)
Copyright 2013 Eran Ifrah (eran.ifrah@gmail.com)
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.
============================================================================*/
#ifndef cmGlobalCodeLiteGenerator_h
#define cmGlobalCodeLiteGenerator_h
#include "cmExternalMakefileProjectGenerator.h"
class cmLocalGenerator;
class cmExtraCodeLiteGenerator : public cmExternalMakefileProjectGenerator
{
protected:
std::string ConfigName;
std::string WorkspacePath;
unsigned int CpuCount;
protected:
std::string GetCodeLiteCompilerName(const cmMakefile* mf) const;
std::string GetConfigurationName( const cmMakefile* mf ) const;
std::string GetBuildCommand(const cmMakefile* mf) const;
std::string GetCleanCommand(const cmMakefile* mf) const;
std::string GetRebuildCommand(const cmMakefile* mf) const;
std::string GetSingleFileBuildCommand(const cmMakefile* mf) const;
public:
cmExtraCodeLiteGenerator();
2015-04-27 22:25:09 +02:00
virtual std::string GetName() const
2014-08-03 19:52:23 +02:00
{ return cmExtraCodeLiteGenerator::GetActualName();}
2015-04-27 22:25:09 +02:00
static std::string GetActualName() { return "CodeLite";}
2014-08-03 19:52:23 +02:00
static cmExternalMakefileProjectGenerator* New()
{ return new cmExtraCodeLiteGenerator; }
/** Get the documentation entry for this generator. */
virtual void GetDocumentation(cmDocumentationEntry& entry,
2015-04-27 22:25:09 +02:00
const std::string& fullName) const;
2014-08-03 19:52:23 +02:00
virtual void Generate();
void CreateProjectFile(const std::vector<cmLocalGenerator*>& lgs);
void CreateNewProjectFile(const std::vector<cmLocalGenerator*>& lgs,
const std::string& filename);
};
#endif