1
0
mirror of https://github.com/Kitware/CMake.git synced 2025-05-09 23:08:18 +08:00
CMake/Source/cmExtraCodeLiteGenerator.h
Kitware Robot 0b96ae1f6a Revise C++ coding style using clang-format with "east const"
Run the `clang-format.bash` script to update all our C and C++ code to a
new style defined by `.clang-format`, now with "east const" enforcement.
Use `clang-format` version 18.

* If you reached this commit for a line in `git blame`, re-run the blame
  operation starting at the parent of this commit to see older history
  for the content.

* See the parent commit for instructions to rebase a change across this
  style transition commit.

Issue: #26123
2025-01-23 13:09:50 -05:00

69 lines
2.9 KiB
C++

/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#pragma once
#include "cmConfigure.h" // IWYU pragma: keep
#include <map>
#include <set>
#include <string>
#include <vector>
#include "cmExternalMakefileProjectGenerator.h"
class cmLocalGenerator;
class cmMakefile;
class cmGeneratorTarget;
class cmXMLWriter;
class cmSourceFile;
class cmExtraCodeLiteGenerator : public cmExternalMakefileProjectGenerator
{
protected:
std::string ConfigName;
std::string WorkspacePath;
unsigned int CpuCount = 2;
std::string GetCodeLiteCompilerName(cmMakefile const* mf) const;
std::string GetConfigurationName(cmMakefile const* mf) const;
std::string GetBuildCommand(cmMakefile const* mf,
std::string const& targetName) const;
std::string GetCleanCommand(cmMakefile const* mf,
std::string const& targetName) const;
std::string GetRebuildCommand(cmMakefile const* mf,
std::string const& targetName) const;
std::string GetSingleFileBuildCommand(cmMakefile const* mf) const;
std::vector<std::string> CreateProjectsByTarget(cmXMLWriter* xml);
std::vector<std::string> CreateProjectsByProjectMaps(cmXMLWriter* xml);
std::string CollectSourceFiles(cmMakefile const* makefile,
cmGeneratorTarget const* gt,
std::map<std::string, cmSourceFile*>& cFiles,
std::set<std::string>& otherFiles);
void FindMatchingHeaderfiles(std::map<std::string, cmSourceFile*>& cFiles,
std::set<std::string>& otherFiles);
void CreateProjectSourceEntries(std::map<std::string, cmSourceFile*>& cFiles,
std::set<std::string>& otherFiles,
cmXMLWriter* xml,
std::string const& projectPath,
cmMakefile const* mf,
std::string const& projectType,
std::string const& targetName);
void CreateFoldersAndFiles(std::set<std::string>& cFiles, cmXMLWriter& xml,
std::string const& projectPath);
void CreateFoldersAndFiles(std::map<std::string, cmSourceFile*>& cFiles,
cmXMLWriter& xml, std::string const& projectPath);
public:
cmExtraCodeLiteGenerator();
static cmExternalMakefileProjectGeneratorFactory* GetFactory();
void Generate() override;
void CreateProjectFile(std::vector<cmLocalGenerator*> const& lgs);
void CreateNewProjectFile(std::vector<cmLocalGenerator*> const& lgs,
std::string const& filename);
void CreateNewProjectFile(cmGeneratorTarget const* lg,
std::string const& filename);
};