I\'ve started a process using QProcess::start() and I need to detach it afterwards. How can I do it? I haven\'t found relevant info in the Qt docs.
QProcess::start()
I\'m
You can't as of 5.1, see here. There's also a suggestion in the comments, not sure if useful for your case):
Workaround proposal: write a helper process that starts detached processes, and terminates itself when all setting up is completed.