diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:45 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:46 (GMT) |
commit | a45fed81e5fd5d9b280c8dd70d50c9606a982a0b (patch) | |
tree | 138c275f924984a8e1aea8e9033cc29ea82d7cf3 /Source/cmLocalVisualStudio7Generator.cxx | |
parent | f0aa660772565545cbcda9ed8ae946b8d5097416 (diff) | |
download | CMake-a45fed81e5fd5d9b280c8dd70d50c9606a982a0b.zip CMake-a45fed81e5fd5d9b280c8dd70d50c9606a982a0b.tar.gz CMake-a45fed81e5fd5d9b280c8dd70d50c9606a982a0b.tar.bz2 |
cmGeneratorTarget: Move GetCompilePDBPath from cmTarget.
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 dd4cd33..799bac6 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -881,7 +881,7 @@ void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout, if(target.GetType() <= cmTarget::OBJECT_LIBRARY) { // Specify the compiler program database file if configured. - std::string pdb = target.GetCompilePDBPath(configName); + std::string pdb = gt->GetCompilePDBPath(configName); if(!pdb.empty()) { fout << "\t\t\t\tProgramDataBaseFileName=\"" |