diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-04 17:19:51 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:20:50 (GMT) |
commit | b3f0e35308993de825f00ec18fc6559e6609c9b0 (patch) | |
tree | 36a3fd55b874ccebdcf450cbad83b15750b52226 /Source/cmTarget.h | |
parent | 34c437411dad89c671261269f2067129584a4259 (diff) | |
download | CMake-b3f0e35308993de825f00ec18fc6559e6609c9b0.zip CMake-b3f0e35308993de825f00ec18fc6559e6609c9b0.tar.gz CMake-b3f0e35308993de825f00ec18fc6559e6609c9b0.tar.bz2 |
cmGeneratorTarget: Move GetCompilePDBDirectory from cmTarget.
Diffstat (limited to 'Source/cmTarget.h')
-rw-r--r-- | Source/cmTarget.h | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Source/cmTarget.h b/Source/cmTarget.h index a6f2465..8689838 100644 --- a/Source/cmTarget.h +++ b/Source/cmTarget.h @@ -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* |