View Single Post
  #11  
Old 09-05-2007, 08:49 PM
froglok23's Avatar
froglok23
Hill Giant
 
Join Date: May 2005
Location: Australia
Posts: 113
Default

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
Reply With Quote