ENH: don't hardcode gcc

-put the include dirs in the project file to enable autocompletion
-prepare for nmake

Alex
This commit is contained in:
Alexander Neundorf
2007-08-29 10:12:09 -04:00
parent fc9f19b202
commit a392c7b5b1
2 changed files with 151 additions and 36 deletions

View File

@@ -22,6 +22,7 @@
class cmLocalGenerator;
class cmMakefile;
class cmTarget;
/** \class cmExtraCodeBlocksGenerator
* \brief Write CodeBlocks project files for Makefile based projects
@@ -50,6 +51,10 @@ private:
void CreateNewProjectFile(const std::vector<cmLocalGenerator*>& lgs,
const std::string& filename);
std::string GetCBCompilerId(const cmMakefile* mf);
int GetCBTargetType(cmTarget* target);
std::string BuildMakeCommand(const std::string& make, const char* makefile,
const char* target);
};