diff options
author | Brad King <brad.king@kitware.com> | 2002-12-11 16:49:08 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2002-12-11 16:49:08 (GMT) |
commit | d6f98c2a82c693f9f96bd7c515fa4946a375f3ca (patch) | |
tree | 8d5ef7199c1196cbc32e673a4b668b98561f943a /Source/cmakemain.cxx | |
parent | e9e3855c65e9ee32119645d6e4044ba0ee8b8a06 (diff) | |
download | CMake-d6f98c2a82c693f9f96bd7c515fa4946a375f3ca.zip CMake-d6f98c2a82c693f9f96bd7c515fa4946a375f3ca.tar.gz CMake-d6f98c2a82c693f9f96bd7c515fa4946a375f3ca.tar.bz2 |
ENH: Added cmSystemTools::EnableMSVCDebugHook() to prevent error dialogs when CMake is invoked by Dart.
Diffstat (limited to 'Source/cmakemain.cxx')
-rw-r--r-- | Source/cmakemain.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmakemain.cxx b/Source/cmakemain.cxx index 2781f0b..96112bc 100644 --- a/Source/cmakemain.cxx +++ b/Source/cmakemain.cxx @@ -25,6 +25,7 @@ void updateProgress(const char *msg, float prog, void *cd); int main(int ac, char** av) { + cmSystemTools::EnableMSVCDebugHook(); int ret = do_cmake(ac, av); #ifdef CMAKE_BUILD_WITH_CMAKE cmDynamicLoader::FlushCache(); |