diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-10-22 22:59:36 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-10-27 06:44:20 (GMT) |
commit | f210cb131e5814631d6d2974cf2437632446654f (patch) | |
tree | 60a6c05e606c9a6987fae8821737490acf23484f /Source/cmTarget.cxx | |
parent | bde277e811fea2532ed32ade6d7f3d6e910bfda0 (diff) | |
download | CMake-f210cb131e5814631d6d2974cf2437632446654f.zip CMake-f210cb131e5814631d6d2974cf2437632446654f.tar.gz CMake-f210cb131e5814631d6d2974cf2437632446654f.tar.bz2 |
cmTarget: Make compatbility API explicit.
Diffstat (limited to 'Source/cmTarget.cxx')
-rw-r--r-- | Source/cmTarget.cxx | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx index 0c0cf8e..c887fc8 100644 --- a/Source/cmTarget.cxx +++ b/Source/cmTarget.cxx @@ -315,23 +315,6 @@ cmListFileBacktrace const* cmTarget::GetUtilityBacktrace( } //---------------------------------------------------------------------------- -void cmTarget::FinishConfigure() -{ - // Erase any cached link information that might have been comptued - // on-demand during the configuration. This ensures that build - // system generation uses up-to-date information even if other cache - // invalidation code in this source file is buggy. - -#if defined(_WIN32) && !defined(__CYGWIN__) - // Do old-style link dependency analysis only for CM_USE_OLD_VS6. - if(this->Makefile->GetGlobalGenerator()->IsForVS6()) - { - this->AnalyzeLibDependenciesForVS6(*this->Makefile); - } -#endif -} - -//---------------------------------------------------------------------------- cmListFileBacktrace const& cmTarget::GetBacktrace() const { return this->Backtrace; |