From 6dad8af5ee6764a2bb28efa8e2ebce8d2db21062 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Sat, 4 Feb 2012 08:34:04 +0000 Subject: [PATCH] On windows create process with DETACHED_PROCESS flag to remove the console --- Common/OS.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Common/OS.cpp b/Common/OS.cpp index 0e9f9bc154..81502524d3 100644 --- a/Common/OS.cpp +++ b/Common/OS.cpp @@ -185,7 +185,8 @@ int SystemCall(std::string command) suInfo.cb = sizeof(suInfo); Msg::Info("Calling '%s'", command.c_str()); CreateProcess(NULL, (char*)command.c_str(), NULL, NULL, FALSE, - NORMAL_PRIORITY_CLASS, NULL, NULL, &suInfo, &prInfo); + NORMAL_PRIORITY_CLASS|DETACHED_PROCESS, NULL, NULL, + &suInfo, &prInfo); return 0; #else if(!system(NULL)) { -- GitLab