cmLocalGenerator: Constify GetIncludeDirectories method.

This commit is contained in:
Stephen Kelly 2015-06-06 12:57:19 +02:00
parent b3e2e332eb
commit 820986edff
2 changed files with 2 additions and 2 deletions

View File

@ -1341,7 +1341,7 @@ void cmLocalGenerator::GetIncludeDirectories(std::vector<std::string>& dirs,
const std::string& lang, const std::string& lang,
const std::string& config, const std::string& config,
bool stripImplicitInclDirs bool stripImplicitInclDirs
) ) const
{ {
// Need to decide whether to automatically include the source and // Need to decide whether to automatically include the source and
// binary directories at the beginning of the include path. // binary directories at the beginning of the include path.

View File

@ -183,7 +183,7 @@ public:
cmGeneratorTarget* target, cmGeneratorTarget* target,
const std::string& lang = "C", const std::string& lang = "C",
const std::string& config = "", const std::string& config = "",
bool stripImplicitInclDirs = true); bool stripImplicitInclDirs = true) const;
void AddCompileOptions(std::string& flags, cmTarget* target, void AddCompileOptions(std::string& flags, cmTarget* target,
const std::string& lang, const std::string& config); const std::string& lang, const std::string& config);
void AddCompileDefinitions(std::set<std::string>& defines, void AddCompileDefinitions(std::set<std::string>& defines,