C::B: Port API to cmGeneratorTarget.

This commit is contained in:
Stephen Kelly
2015-10-21 21:38:24 +02:00
parent b74aa0e3d2
commit bcee21ceb7
2 changed files with 8 additions and 9 deletions
+2 -3
View File
@@ -18,7 +18,6 @@
class cmLocalGenerator;
class cmMakefile;
class cmGeneratorTarget;
class cmTarget;
class cmGeneratedFileStream;
/** \class cmExtraCodeBlocksGenerator
@@ -42,7 +41,7 @@ public:
private:
struct CbpUnit
{
std::vector<const cmTarget*> Targets;
std::vector<const cmGeneratorTarget*> Targets;
};
void CreateProjectFile(const std::vector<cmLocalGenerator*>& lgs);
@@ -53,7 +52,7 @@ private:
cmGeneratorTarget* target) const;
std::string GetCBCompilerId(const cmMakefile* mf);
int GetCBTargetType(cmTarget* target);
int GetCBTargetType(cmGeneratorTarget* target);
std::string BuildMakeCommand(const std::string& make, const char* makefile,
const std::string& target);
void AppendTarget(cmGeneratedFileStream& fout,