I’m trying to set up g++ compiler from MinGW as EmEditor’s external tool, and compiling my C++ source files.
The g++ compiler’s command for compiling and linking C++ source file into executable console application breaks into 2 seperate commands:
g++ -c hello.cpp
g++ -o hello hello.o
So, now I have to set 3 external tools for compiling, linking, and running programs, respectively. Are there any solution for a single mouse click to “Compile & Run” my C++ source file?
My external tool settings are listed below:


