Re: [GD-Windows] VC++ lag
Brought to you by:
vexxed72
From: brian s. <pud...@po...> - 2003-06-12 18:05:15
|
That's because for MS's large scale projects they don't use workspaces, and they do use something that looks a whole lot like make. It's called NT Build, and you can get it with the DDK. With an external build utility, VC can just be the debugger and you don't have to worry about its internal dependency checker being slow. We use a makefile-type solution here on a much smaller-scale project, and it works great - I would never go back to workspaces for any real project. --brian Jon Watte wrote: >It's really quite amazing how Microsoft can develop these >tools and they just don't scale well. It's all good as long >as your project is some 10,000 line report generator, but >for a large-scale commercial system, it's really quite lame. >Almost makes me wish for the days of GNU make, VIM and >CTags... > >(which we could do, because we generate .dsp and .dsw files >out of an abstract project description file that looks a lot >like a make file, anyway) > > |