diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-23 16:26:43 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-24 07:19:57 (GMT) |
commit | 8ac8739b2e5df2f36194261f9dcac95107b4b5f7 (patch) | |
tree | 0cdf925989664eb574abc68bdf3cc1b568f36ec6 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | 84fb579fc8935202bf182bbd1685aff6acc2a3b5 (diff) | |
download | CMake-8ac8739b2e5df2f36194261f9dcac95107b4b5f7.zip CMake-8ac8739b2e5df2f36194261f9dcac95107b4b5f7.tar.gz CMake-8ac8739b2e5df2f36194261f9dcac95107b4b5f7.tar.bz2 |
VS: Port TargetIsFortranOnly to cmGeneratorTarget
Diffstat (limited to 'Source/cmLocalVisualStudio7Generator.cxx')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index a2d4d16..5ba59ee 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -229,7 +229,7 @@ void cmLocalVisualStudio7Generator { cmGlobalVisualStudioGenerator* gg = static_cast<cmGlobalVisualStudioGenerator*>(this->GlobalGenerator); - this->FortranProject = gg->TargetIsFortranOnly(*target->Target); + this->FortranProject = gg->TargetIsFortranOnly(target); this->WindowsCEProject = gg->TargetsWindowsCE(); // Intel Fortran for VS10 uses VS9 format ".vfproj" files. |