VC++.NET - Build vs Rebuild vs Clean
-
Hi All This is a basic question but am I correct in saying that the difference between Build, Rebuild and Clean when building is as follows: Build - Creates a pre-compiled file from scratch recreating all the intermediate files. Rebuild - Just updates those intermediate files that require changes since last build. Clean - Deletes all the intermediate files. Regards Jeremy
-
Hi All This is a basic question but am I correct in saying that the difference between Build, Rebuild and Clean when building is as follows: Build - Creates a pre-compiled file from scratch recreating all the intermediate files. Rebuild - Just updates those intermediate files that require changes since last build. Clean - Deletes all the intermediate files. Regards Jeremy
JSadleir wrote: Clean - Deletes all the intermediate files. and also the output files! Rebuild: Same as Clean, but a new Build is launched after it. Build: Compile all changed files and link. Build doesn't say anything about pre-compiled header files. Don't try it, just do it! ;-)