Combining Processing Applications into 1 Big Executable?

后端 未结 3 881
梦毁少年i
梦毁少年i 2021-01-15 03:40

I\'ve built these 3 applications. Each of them collects data from user input and creates a csv file. 2 of them rely on the LEAP motion controller. I am trying to figure out

3条回答
  •  长发绾君心
    2021-01-15 04:37

    Easy solution: Just make a batch file and add one line for each application. To make one wait for the next call each like so:

    START /WAIT MyApp1.exe
    START /WAIT MyApp2.exe
    START /WAIT MyApp3.exe
    

提交回复
热议问题