2014-01-10 11:20:11 +04: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
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <cmConfigure.h>
|
|
|
|
|
2014-01-10 11:20:11 +04:00
|
|
|
#include "cmExternalMakefileProjectGenerator.h"
|
|
|
|
|
2016-09-01 21:59:28 +03:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2014-01-10 11:20:11 +04:00
|
|
|
class cmLocalGenerator;
|
2016-09-01 21:59:28 +03:00
|
|
|
class cmMakefile;
|
2014-01-10 11:20:11 +04:00
|
|
|
|
|
|
|
class cmExtraCodeLiteGenerator : public cmExternalMakefileProjectGenerator
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
std::string ConfigName;
|
|
|
|
std::string WorkspacePath;
|
|
|
|
unsigned int CpuCount;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
std::string GetCodeLiteCompilerName(const cmMakefile* mf) const;
|
2016-05-16 17:34:04 +03:00
|
|
|
std::string GetConfigurationName(const cmMakefile* mf) const;
|
2014-01-10 11:20:11 +04:00
|
|
|
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;
|
2016-05-16 17:34:04 +03:00
|
|
|
|
2014-01-10 11:20:11 +04:00
|
|
|
public:
|
|
|
|
cmExtraCodeLiteGenerator();
|
|
|
|
|
2016-07-20 19:28:39 +03:00
|
|
|
static cmExternalMakefileProjectGeneratorFactory* GetFactory();
|
2014-01-10 11:20:11 +04:00
|
|
|
|
2016-06-27 22:25:27 +03:00
|
|
|
void Generate() CM_OVERRIDE;
|
2014-01-10 11:20:11 +04:00
|
|
|
void CreateProjectFile(const std::vector<cmLocalGenerator*>& lgs);
|
|
|
|
|
|
|
|
void CreateNewProjectFile(const std::vector<cmLocalGenerator*>& lgs,
|
2016-05-16 17:34:04 +03:00
|
|
|
const std::string& filename);
|
2014-01-10 11:20:11 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|