Compiling a Windows program is very slow...

Started by Pelle, September 16, 2004, 06:27:39 AM

Previous topic - Next topic

Pelle

You can use this sequence to increase the compilation speed:


#define WIN32_LEAN_AND_MEAN
#include <windows.h>


Using WIN32_LEAN_AND_MEAN will prevent several not so common #include files from being included by windows.h, which will increase the speed.
/Pelle

David144

By default, the compiler only accepts standard C. To compile a Windows program, you need to enable Microsoft extensions in the compiler. In the IDE, go to Project Options and make sure Enable Microsoft Extensions is checked on the Compiler tab. From the command line, make sure you use the /Ze compiler option.