| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- /*============================================================================
- CMake - Cross Platform Makefile Generator
- Copyright 2004-2009 Kitware, Inc.
- Copyright 2004 Alexander Neundorf ([email protected])
- Copyright 2013 Eran Ifrah ([email protected])
- 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 <cmConfigure.h>
- #include "cmExternalMakefileProjectGenerator.h"
- #include <string>
- #include <vector>
- class cmLocalGenerator;
- class cmMakefile;
- 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();
- static cmExternalMakefileProjectGeneratorFactory* GetFactory();
- void Generate() CM_OVERRIDE;
- void CreateProjectFile(const std::vector<cmLocalGenerator*>& lgs);
- void CreateNewProjectFile(const std::vector<cmLocalGenerator*>& lgs,
- const std::string& filename);
- };
- #endif
|