mirror of
https://github.com/Kitware/CMake.git
synced 2025-05-10 15:12:19 +08:00

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
53 lines
1.7 KiB
C++
53 lines
1.7 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 <string>
|
|
#include <vector>
|
|
|
|
#include "cmExternalMakefileProjectGenerator.h"
|
|
|
|
class cmGeneratorTarget;
|
|
class cmLocalGenerator;
|
|
class cmMakefile;
|
|
class cmXMLWriter;
|
|
|
|
/** \class cmExtraCodeBlocksGenerator
|
|
* \brief Write CodeBlocks project files for Makefile based projects
|
|
*/
|
|
class cmExtraCodeBlocksGenerator : public cmExternalMakefileProjectGenerator
|
|
{
|
|
public:
|
|
cmExtraCodeBlocksGenerator();
|
|
|
|
static cmExternalMakefileProjectGeneratorFactory* GetFactory();
|
|
|
|
void Generate() override;
|
|
|
|
private:
|
|
struct CbpUnit
|
|
{
|
|
std::vector<cmGeneratorTarget const*> Targets;
|
|
};
|
|
|
|
void CreateProjectFile(std::vector<cmLocalGenerator*> const& lgs);
|
|
|
|
void CreateNewProjectFile(std::vector<cmLocalGenerator*> const& lgs,
|
|
std::string const& filename);
|
|
std::string CreateDummyTargetFile(cmLocalGenerator* lg,
|
|
cmGeneratorTarget* target) const;
|
|
|
|
std::string GetCBCompilerId(cmMakefile const* mf);
|
|
int GetCBTargetType(cmGeneratorTarget* target);
|
|
std::string BuildMakeCommand(std::string const& make,
|
|
std::string const& makefile,
|
|
std::string const& target,
|
|
std::string const& makeFlags);
|
|
void AppendTarget(cmXMLWriter& xml, std::string const& targetName,
|
|
cmGeneratorTarget* target, std::string const& make,
|
|
cmLocalGenerator const* lg, std::string const& compiler,
|
|
std::string const& makeFlags);
|
|
};
|