Is there a batch processing framework that could be used for C++ applications?
- by Benjamin
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?