cmLocalGenerator: Constify GetIncludeDirectories method.
This commit is contained in:
parent
b3e2e332eb
commit
820986edff
|
@ -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.
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue