diff options
author | Brad King <brad.king@kitware.com> | 2007-03-14 13:34:31 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2007-03-14 13:34:31 (GMT) |
commit | 770ffb1699948071bac6f60444b3cb1eb28f3ba6 (patch) | |
tree | 5bf13bc1235626b1ceb8b18316f3ea70ee4c759c /Source | |
parent | c53b26baf26bdb465fbbe003b9e184b66ee22d7a (diff) | |
download | CMake-770ffb1699948071bac6f60444b3cb1eb28f3ba6.zip CMake-770ffb1699948071bac6f60444b3cb1eb28f3ba6.tar.gz CMake-770ffb1699948071bac6f60444b3cb1eb28f3ba6.tar.bz2 |
BUG: All executable and library project types should specify a program database file name for all configurations. Even when debug information is not used the .pdb file specified is used to construct the name of a .idb file that exists for all configurations when building with the VS IDE.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmLocalVisualStudio7Generator.cxx | 27 |
1 files changed, 6 insertions, 21 deletions
diff --git a/Source/cmLocalVisualStudio7Generator.cxx b/Source/cmLocalVisualStudio7Generator.cxx index 80d257b..100d791 100644 --- a/Source/cmLocalVisualStudio7Generator.cxx +++ b/Source/cmLocalVisualStudio7Generator.cxx @@ -390,7 +390,6 @@ public: // Check for specific options. bool UsingUnicode(); - bool UsingDebugPDB(); // Write options to output. void OutputPreprocessorDefinitions(std::ostream& fout, @@ -579,12 +578,13 @@ void cmLocalVisualStudio7Generator::WriteConfiguration(std::ostream& fout, targetOptions.OutputPreprocessorDefinitions(fout, "\t\t\t\t", "\n"); fout << "\t\t\t\tAssemblerListingLocation=\"" << configName << "\"\n"; fout << "\t\t\t\tObjectFile=\"$(IntDir)\\\"\n"; - if(targetOptions.UsingDebugPDB() && - (target.GetType() == cmTarget::EXECUTABLE || - target.GetType() == cmTarget::STATIC_LIBRARY || - target.GetType() == cmTarget::SHARED_LIBRARY || - target.GetType() == cmTarget::MODULE_LIBRARY)) + if(target.GetType() == cmTarget::EXECUTABLE || + target.GetType() == cmTarget::STATIC_LIBRARY || + target.GetType() == cmTarget::SHARED_LIBRARY || + target.GetType() == cmTarget::MODULE_LIBRARY) { + // We need to specify a program database file name even for + // non-debug configurations because VS still creates .idb files. fout << "\t\t\t\tProgramDataBaseFileName=\"" << target.GetDirectory(configName) << "/" << target.GetPDBName(configName) << "\"\n"; @@ -1698,21 +1698,6 @@ bool cmLocalVisualStudio7GeneratorOptions::UsingUnicode() } //---------------------------------------------------------------------------- -bool cmLocalVisualStudio7GeneratorOptions::UsingDebugPDB() -{ - std::map<cmStdString, cmStdString>::iterator mi = - this->FlagMap.find("DebugInformationFormat"); - if(mi != this->FlagMap.end() && mi->second != "1") - { - return true; - } - else - { - return false; - } -} - -//---------------------------------------------------------------------------- void cmLocalVisualStudio7GeneratorOptions::Parse(const char* flags) { // Parse the input string as a windows command line since the string |