mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Merge topic 'vs-pdb-output'
2ccca05Run PDBDirectoryAndName test on MSVC and Intelefc83b3Document that PDB_(NAME|OUTPUT_DIRECTORY) are ignored for VS 6b294457Verify that PDB_(NAME|OUTPUT_DIRECTORY) are honored in test3f60dbfAdd PDB_OUTPUT_DIRECTORY and PDB_NAME target properties (#10830)
This commit is contained in:
@@ -328,8 +328,12 @@ void cmMakefileLibraryTargetGenerator::WriteLibraryRules
|
||||
}
|
||||
}
|
||||
|
||||
std::string pdbOutputPath = this->Target->GetPDBDirectory();
|
||||
cmSystemTools::MakeDirectory(pdbOutputPath.c_str());
|
||||
pdbOutputPath += "/";
|
||||
|
||||
std::string targetFullPath = outpath + targetName;
|
||||
std::string targetFullPathPDB = outpath + targetNamePDB;
|
||||
std::string targetFullPathPDB = pdbOutputPath + targetNamePDB;
|
||||
std::string targetFullPathSO = outpath + targetNameSO;
|
||||
std::string targetFullPathReal = outpath + targetNameReal;
|
||||
std::string targetFullPathImport = outpathImp + targetNameImport;
|
||||
|
||||
Reference in New Issue
Block a user