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/cmCommonTargetGenerator.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/cmCommonTargetGenerator.cxx')
-rw-r--r-- | Source/cmCommonTargetGenerator.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmCommonTargetGenerator.cxx b/Source/cmCommonTargetGenerator.cxx index f7cc502..a197f88 100644 --- a/Source/cmCommonTargetGenerator.cxx +++ b/Source/cmCommonTargetGenerator.cxx @@ -109,7 +109,7 @@ std::string cmCommonTargetGenerator::ComputeFortranModuleDirectory() const { std::string mod_dir; const char* target_mod_dir = - this->Target->GetProperty("Fortran_MODULE_DIRECTORY"); + this->GeneratorTarget->GetProperty("Fortran_MODULE_DIRECTORY"); const char* moddir_flag = this->Makefile->GetDefinition("CMAKE_Fortran_MODDIR_FLAG"); if(target_mod_dir && moddir_flag) @@ -214,7 +214,7 @@ cmCommonTargetGenerator this->LocalGenerator->GetFortranFormat(srcfmt); if(format == cmLocalGenerator::FortranFormatNone) { - const char* tgtfmt = this->Target->GetProperty("Fortran_FORMAT"); + const char* tgtfmt = this->GeneratorTarget->GetProperty("Fortran_FORMAT"); format = this->LocalGenerator->GetFortranFormat(tgtfmt); } const char* var = 0; |