I wonder if there is a way to make a .exe that gives the compiler (I use Visual Studio) commands.
For example:
I have main.cpp
.
And I want to compile main.cpp
without opening the IDE or the console.
So I start a program X.exe
which gives a command to the compiler to compile main.cpp
.
I heard of Makefiles and Batchfles. But I dont't know how to give other programs commands (if this is even possible). Basically I want to automate compiling.
Thank you in advance.