Guest User

Untitled

a guest
Jan 22nd, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. for(int i=0;i<10;i++)
  2. {
  3. Run_Project1(i) // Pass i as argument to project 1.
  4. Run_Project2(i)
  5. // do something with results
  6. }
  7.  
  8. while( itPleasesYou ){
  9. system("Path/proj1.exe args");
  10. system("Path/proj2.exe args");
  11. }
  12.  
  13. FOR /L %%i IN (1,1,10) DO (
  14. devenv "project%%i.vcxproj" /RunExit
  15. )
Add Comment
Please, Sign In to add comment