diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-04-29 15:49:18 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-04-29 15:49:18 (GMT) |
commit | 61d0a75d11c2ff93c972adeaa28a08f6314d5c07 (patch) | |
tree | f15d0d19a5b479c5dbdb1a91b5f75ec51f53d6b1 /Source/cmGlobalVisualStudio6Generator.cxx | |
parent | 48702f8a8d5c44a7b5f5a848ac83efde3edbb469 (diff) | |
download | CMake-61d0a75d11c2ff93c972adeaa28a08f6314d5c07.zip CMake-61d0a75d11c2ff93c972adeaa28a08f6314d5c07.tar.gz CMake-61d0a75d11c2ff93c972adeaa28a08f6314d5c07.tar.bz2 |
ENH: Add option to ignore errors. Only works on make
Diffstat (limited to 'Source/cmGlobalVisualStudio6Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio6Generator.cxx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Source/cmGlobalVisualStudio6Generator.cxx b/Source/cmGlobalVisualStudio6Generator.cxx index 6704c73..79fd4fd 100644 --- a/Source/cmGlobalVisualStudio6Generator.cxx +++ b/Source/cmGlobalVisualStudio6Generator.cxx @@ -67,9 +67,12 @@ void cmGlobalVisualStudio6Generator::GenerateConfigurations(cmMakefile* mf) } } -std::string cmGlobalVisualStudio6Generator::GenerateBuildCommand(const char* makeProgram, const char *projectName, const char *targetName, - const char* config) +std::string cmGlobalVisualStudio6Generator::GenerateBuildCommand(const char* makeProgram, + const char *projectName, const char *targetName, const char* config, bool ignoreErrors) { + // Ingoring errors is not implemented in visual studio 6 + (void) ignoreErrors; + // now build the test std::vector<std::string> mp; mp.push_back("[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\VisualStudio\\6.0\\Setup;VsCommonDir]/MSDev98/Bin"); |