diff options
author | Brad King <brad.king@kitware.com> | 2013-11-20 14:08:25 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2013-11-20 14:08:25 (GMT) |
commit | 483b7e709396122c2e235972902a65e34878ae2a (patch) | |
tree | 2f84af3046600831d57990145a0f4361878844ae /Source | |
parent | b20f4d4deed23886d8afdc696515ac75e8dedd50 (diff) | |
parent | a247911a88058ec2f814df5c1620b0be5a1065a8 (diff) | |
download | CMake-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.cxx | 2 |
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; } } |