summaryrefslogtreecommitdiffstats
path: root/Source/cmTarget.h
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2012-10-07 09:01:13 (GMT)
committerStephen Kelly <steveire@gmail.com>2013-10-29 14:42:42 (GMT)
commit638843af984281c67edcc9ea9e05712ac9075d04 (patch)
tree9af9dd9ba6f2afb237add4021e983ce1e34e84df /Source/cmTarget.h
parent90ef1cfe4882139d9fe525352bc8e2e86b69f1db (diff)
downloadCMake-638843af984281c67edcc9ea9e05712ac9075d04.zip
CMake-638843af984281c67edcc9ea9e05712ac9075d04.tar.gz
CMake-638843af984281c67edcc9ea9e05712ac9075d04.tar.bz2
Remove the Location member from cmTarget.
It is never used. Presumably it only exists so that a const char * can be returned from GetLocation. However, that is getting in the way now, so use a static std::string instead, which is already a common pattern in cmake.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r--Source/cmTarget.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h
index dd05d5b..41af8ab 100644
--- a/Source/cmTarget.h
+++ b/Source/cmTarget.h
@@ -674,7 +674,6 @@ private:
bool HaveInstallRule;
std::string InstallPath;
std::string RuntimeInstallPath;
- std::string Location;
std::string ExportMacro;
std::set<cmStdString> Utilities;
bool RecordDependencies;