For example, I have 2 Makefiles: Makefile.Debugand Makefile.Release.
I can switch between them by setting different commands in:
C / C ++ Build -> Builder Settings -> build command: make -f Makefile.Debug -j4or make -f Makefile.Release -j4, but how can I switch between two makefiles in the Eclipse GUI (as in Visual Studio debug / release configurations)?

source
share