summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2013-11-19 10:48:19 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-11-19 19:40:32 (GMT)
commit1c2752169c3d34b80fb331b4edcc31a6001d2974 (patch)
tree69fdfd7c58f23db6aec345ba97959a5339c94ea7 /Source/cmGlobalGenerator.h
parent37554acf43f1a94f22b3b9fb8838d685ffa07194 (diff)
downloadCMake-1c2752169c3d34b80fb331b4edcc31a6001d2974.zip
CMake-1c2752169c3d34b80fb331b4edcc31a6001d2974.tar.gz
CMake-1c2752169c3d34b80fb331b4edcc31a6001d2974.tar.bz2
cmGlobalGenerator: Make NameResolvesToFramework const.
Diffstat (limited to 'Source/cmGlobalGenerator.h')
-rw-r--r--Source/cmGlobalGenerator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalGenerator.h b/Source/cmGlobalGenerator.h
index 15bc366..eb720a8 100644
--- a/Source/cmGlobalGenerator.h
+++ b/Source/cmGlobalGenerator.h
@@ -207,14 +207,14 @@ public:
///! Find a target by name by searching the local generators.
cmTarget* FindTarget(const char* project, const char* name,
- bool excludeAliases = false);
+ bool excludeAliases = false) const;
void AddAlias(const char *name, cmTarget *tgt);
bool IsAlias(const char *name) const;
/** Determine if a name resolves to a framework on disk or a built target
that is a framework. */
- bool NameResolvesToFramework(const std::string& libname);
+ bool NameResolvesToFramework(const std::string& libname) const;
/** If check to see if the target is linked to by any other
target in the project */