|
|
@@ -334,12 +334,6 @@ public:
|
|
|
pdb output directory is given. */
|
|
|
std::string GetPDBDirectory(const std::string& config) const;
|
|
|
|
|
|
- /** Get the directory in which to place the target compiler .pdb file.
|
|
|
- If the configuration name is given then the generator will add its
|
|
|
- subdirectory for that configuration. Otherwise just the canonical
|
|
|
- compiler pdb output directory is given. */
|
|
|
- std::string GetCompilePDBDirectory(const std::string& config = "") const;
|
|
|
-
|
|
|
const char* ImportedGetLocation(const std::string& config) const;
|
|
|
|
|
|
/** Get the target major and minor version numbers interpreted from
|
|
|
@@ -633,7 +627,11 @@ private:
|
|
|
ImportInfo& info) const;
|
|
|
|
|
|
// Cache target compile paths for each configuration.
|
|
|
- struct CompileInfo;
|
|
|
+ struct CompileInfo
|
|
|
+ {
|
|
|
+ std::string CompilePdbDir;
|
|
|
+ };
|
|
|
+
|
|
|
CompileInfo const* GetCompileInfo(const std::string& config) const;
|
|
|
|
|
|
LinkInterface const*
|