diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-09-30 20:25:02 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-09-30 20:25:02 (GMT) |
commit | a63f7ba43c9200dd385b34c658c500eedc222e3f (patch) | |
tree | 045253ed81e3cae887d7940e67dd8336458bff02 /Source/MFCDialog | |
parent | 04d8ba688cf670fc20ea92d472dfba67556a5e68 (diff) | |
download | CMake-a63f7ba43c9200dd385b34c658c500eedc222e3f.zip CMake-a63f7ba43c9200dd385b34c658c500eedc222e3f.tar.gz CMake-a63f7ba43c9200dd385b34c658c500eedc222e3f.tar.bz2 |
BUG: fix load command stuff for cygwin and cleanup at exit
Diffstat (limited to 'Source/MFCDialog')
-rw-r--r-- | Source/MFCDialog/CMakeSetup.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/MFCDialog/CMakeSetup.cpp b/Source/MFCDialog/CMakeSetup.cpp index 808448c..aadeb34 100644 --- a/Source/MFCDialog/CMakeSetup.cpp +++ b/Source/MFCDialog/CMakeSetup.cpp @@ -7,6 +7,7 @@ #include "CMakeCommandLineInfo.h" #include "../cmListFileCache.h" #include "../cmCacheManager.h" +#include "../cmDynamicLoader.h" #ifdef _DEBUG #define new DEBUG_NEW @@ -77,6 +78,7 @@ BOOL CMakeSetup::InitInstance() // clean up globals cmListFileCache::GetInstance()->ClearCache(); + cmDynamicLoader::FlushCache(); // Since the dialog has been closed, return FALSE so that we exit the // application, rather than start the application's message pump. return FALSE; |