diff options
Diffstat (limited to 'Source/cmSystemTools.cxx')
-rw-r--r-- | Source/cmSystemTools.cxx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Source/cmSystemTools.cxx b/Source/cmSystemTools.cxx index 848e7be..f6fff77 100644 --- a/Source/cmSystemTools.cxx +++ b/Source/cmSystemTools.cxx @@ -358,7 +358,8 @@ void cmSystemTools::GetArguments(std::string& line, } } -void cmSystemTools::Error(const char* m1, const char* m2) +void cmSystemTools::Error(const char* m1, const char* m2, + const char* m3, const char* m4) { std::string message = "CMake Error: "; if(m1) @@ -369,6 +370,14 @@ void cmSystemTools::Error(const char* m1, const char* m2) { message += m2; } + if(m3) + { + message += m3; + } + if(m4) + { + message += m4; + } cmSystemTools::s_ErrorOccured = true; #if defined(_WIN32) && !defined(__CYGWIN__) ::MessageBox(0, message.c_str(), 0, MB_OK); |