summaryrefslogtreecommitdiffstats
path: root/Source
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2013-11-20 14:08:25 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2013-11-20 14:08:25 (GMT)
commit483b7e709396122c2e235972902a65e34878ae2a (patch)
tree2f84af3046600831d57990145a0f4361878844ae /Source
parentb20f4d4deed23886d8afdc696515ac75e8dedd50 (diff)
parenta247911a88058ec2f814df5c1620b0be5a1065a8 (diff)
downloadCMake-483b7e709396122c2e235972902a65e34878ae2a.zip
CMake-483b7e709396122c2e235972902a65e34878ae2a.tar.gz
CMake-483b7e709396122c2e235972902a65e34878ae2a.tar.bz2
Merge topic 'remove-LOCATION-property-use'
a247911 Tests: Don't read the LOCATION property from build targets. cffcdd8 KDevelop: Use GetLocation(0) instead of LOCATION property.
Diffstat (limited to 'Source')
-rw-r--r--Source/cmGlobalKdevelopGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalKdevelopGenerator.cxx b/Source/cmGlobalKdevelopGenerator.cxx
index 273d4bb..ab7db51 100644
--- a/Source/cmGlobalKdevelopGenerator.cxx
+++ b/Source/cmGlobalKdevelopGenerator.cxx
@@ -75,7 +75,7 @@ void cmGlobalKdevelopGenerator::Generate()
{
if (ti->second.GetType()==cmTarget::EXECUTABLE)
{
- executable = ti->second.GetProperty("LOCATION");
+ executable = ti->second.GetLocation(0);
break;
}
}