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.cxx | |
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.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 8b64bc4..9308113 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -69,12 +69,6 @@ struct cmTarget::OutputInfo }; //---------------------------------------------------------------------------- -struct cmTarget::CompileInfo -{ - std::string CompilePdbDir; -}; - -//---------------------------------------------------------------------------- class cmTargetInternals { public: @@ -2673,16 +2667,6 @@ std::string cmTarget::GetPDBDirectory(const std::string& config) const } //---------------------------------------------------------------------------- -std::string cmTarget::GetCompilePDBDirectory(const std::string& config) const -{ - if(CompileInfo const* info = this->GetCompileInfo(config)) - { - return info->CompilePdbDir; - } - return ""; -} - -//---------------------------------------------------------------------------- const char* cmTarget::ImportedGetLocation(const std::string& config) const { static std::string location; |