diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-05 16:47:35 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-08 23:04:38 (GMT) |
commit | 1abc20d81df3ee9845904b356960870526fe3276 (patch) | |
tree | 569ea58462f0dbf88fe5452efbf5299f37d17eaf /Source/cmGeneratorTarget.cxx | |
parent | 50dc9b44404f4f31aa24cf17247f10539c3807b2 (diff) | |
download | CMake-1abc20d81df3ee9845904b356960870526fe3276.zip CMake-1abc20d81df3ee9845904b356960870526fe3276.tar.gz CMake-1abc20d81df3ee9845904b356960870526fe3276.tar.bz2 |
cmGeneratorTarget: Move UsesDefaultOutputDir from cmTarget.
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r-- | Source/cmGeneratorTarget.cxx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx index a2423cc..9f46909 100644 --- a/Source/cmGeneratorTarget.cxx +++ b/Source/cmGeneratorTarget.cxx @@ -4474,6 +4474,14 @@ std::string cmGeneratorTarget::GetDirectory(const std::string& config, } //---------------------------------------------------------------------------- +bool cmGeneratorTarget::UsesDefaultOutputDir(const std::string& config, + bool implib) const +{ + std::string dir; + return this->Target->ComputeOutputDir(config, implib, dir); +} + +//---------------------------------------------------------------------------- void cmGeneratorTarget::ComputeLinkInterfaceLibraries( const std::string& config, |