|
From: Luigi B. <lui...@gm...> - 2012-01-13 09:54:40
|
On Fri, Jan 13, 2012 at 7:50 AM, Laser Yuan <las...@gm...> wrote: > I want to modified some part of the library and maybe add some feature to it > in the future. But I found it's really slow to compile and debug the > project. I wondered, In what way I can improve development efficiency, since > currently I spend more time on waiting for it's building than to debug with > it? What are you modifying? If you edit a hpp file, it might take some time to rebuild all the files that include it directly or indirectly, but if you edit a cpp file your IDE should only recompile that single one. Also, in Release mode VC++ is set to run the test suite after recompilation, which takes half an hour. You can disable that if you're recompiling frequently (it's a post-build action in the test-suite project). Luigi |