Is there a batch processing framework that could be used for C++ applications?

Posted by Benjamin on Programmers See other posts from Programmers or by Benjamin
Published on 2011-11-22T13:48:32Z Indexed on 2011/11/22 18:14 UTC
Read the original article Hit count: 135

In my team we develop several command-line C++ applications that work together; they're currently run by hand in separate windows, and after a while managing windows gets really confusing.

I'm looking for a better way to manage the processing of these applications; ideally it would have a GUI with the ability to do the following:

  • start applications in a specified order
  • display application status
  • close particular applications

Is there anything available that does this type of thing or would we need to develop our own? Is there a better way than this?

© Programmers or respective owner

Related posts about c++

Related posts about software-development