Theres 2 types of compiling.
1 is a "Rebuild" or a "Clean Compile" which will compile every source file and create its object file, then link them all together to make a .exe
Then there is a "Batch" Build, which, only compiles the file you have changed, then uses the new object file, it links it all the existing ones to give you your exe.
It just saves you recompiling the entire project every time you make a change.
Warnings / Errors / etc are only shown on compile.
-froglok
|