diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-10 13:51:21 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-17 15:30:38 (GMT) |
commit | cfb2f7508af637c9c35758fbd5dac6c8cb679bdb (patch) | |
tree | 0673c4a5fdbe20c4d19a1675dd5274e4395b1e0e /Source/cmGeneratorTarget.cxx | |
parent | b857f0d84b539056bc6a810161eb22e9b9baca43 (diff) | |
download | CMake-cfb2f7508af637c9c35758fbd5dac6c8cb679bdb.zip CMake-cfb2f7508af637c9c35758fbd5dac6c8cb679bdb.tar.gz CMake-cfb2f7508af637c9c35758fbd5dac6c8cb679bdb.tar.bz2 |
Use cmGeneratorTarget for property access.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index 20fb70b..5e26aad 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -4859,7 +4859,7 @@ bool cmGeneratorTarget::ComputeOutputDir(const std::string& config, // Skip per-configuration subdirectory. conf = ""; } - else if(const char* outdir = this->Target->GetProperty(propertyName)) + else if(const char* outdir = this->GetProperty(propertyName)) { // Use the user-specified output directory. cmGeneratorExpression ge; |