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& config,
bool stripImplicitInclDirs
)
) const
{
// Need to decide whether to automatically include the source and
// binary directories at the beginning of the include path.

View File

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