I created a batch file for software build. I have different "cmd" commands to build the project for different platforms. The build for the project will take time (around 2 minutes for each) to execute and complete.
I want to build both the projects in parallel to save time rather than executing it one by one in sequence. Do I need to create a thread to execute both the command in parallel? I put both the command in batch (.bat) file and it is executing both the command one by one in sequence at the moment.
Example: full_build.bat
clean plat1 build plat1
clean plat2 build plat2
Referred SE Questions