diff options
author | Brad King <brad.king@kitware.com> | 2009-07-24 17:31:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-07-24 17:31:34 (GMT) |
commit | 71c0e1417bdc42fbcc48986c7cb7c26642c1f665 (patch) | |
tree | e42517cc97b5977fa69bd1f4ad58f999ba929cc4 /Source/cmExportLibraryDependencies.h | |
parent | 071ce33ec98fd6eac3345d23de76822643611083 (diff) | |
download | CMake-71c0e1417bdc42fbcc48986c7cb7c26642c1f665.zip CMake-71c0e1417bdc42fbcc48986c7cb7c26642c1f665.tar.gz CMake-71c0e1417bdc42fbcc48986c7cb7c26642c1f665.tar.bz2 |
ENH: Keep only FinalPass commands in memory
In cmMakefile we save all invoked commands so that FinalPass can be
called on them later. Most commands have no final pass, so we should
keep only the few that do.
Diffstat (limited to 'Source/cmExportLibraryDependencies.h')
-rw-r--r-- | Source/cmExportLibraryDependencies.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmExportLibraryDependencies.h b/Source/cmExportLibraryDependencies.h index b5997cc..75de7dc 100644 --- a/Source/cmExportLibraryDependencies.h +++ b/Source/cmExportLibraryDependencies.h @@ -48,6 +48,7 @@ public: * specified by the command is accumulated. */ virtual void FinalPass(); + virtual bool HasFinalPass() const { return true; } /** * The name of the command as specified in CMakeList.txt. |