0

I have a process that is building some modules each time I make changes to my code. The process is continuous unless I close it and I want to run it each time I launch my app. I can see a before launch section in my Run/Debug Configurations settings of my IDE but, If I add my process there, the main process is never spawned since the IDE is probably waiting for the first one to finish.

Any idea how to make these two run in parallel?

LazyOne
  • 158,824
  • 45
  • 388
  • 391
Romeo Mihalcea
  • 9,714
  • 12
  • 50
  • 102
  • It's called [Launch groups in Eclipse](https://stackoverflow.com/a/4054155/2834978) but it's just a multi-launch one after the other, I don think they run in parallel. Probably the same for IntelliJ. – LMC Sep 03 '21 at 20:27
  • 1
    @LMC In parallel or one after the other (with or without a delay) can be chosen: https://help.eclipse.org/latest/topic/org.eclipse.platform.doc.isv/guide/debug_launch_groups.htm – howlger Sep 04 '21 at 17:35

1 Answers1

1

Use the Compound run/debug configuration.

CrazyCoder
  • 389,263
  • 172
  • 990
  • 904