Page 1 of 1

How do I stop dll recompiles

Posted: Wed Jun 03, 2009 4:06 am
by Pecan
When I start the CL debugger to debug CL itself, it always recompiles the plugin DLLs.

Is there a way to stop this. Even if I "restart" the debugger it recompiles the plugins.

very annoying

Re: How do I stop dll recompiles

Posted: Wed Jun 03, 2009 12:00 pm
by eranif
Pecan wrote:When I start the CL debugger to debug CL itself, it always recompiles the plugin DLLs.

Is there a way to stop this.
The default build configurations (WinReleaseUnicode/WinDebugUnicode) sets the build order.

You can right clicking on 'LiteEditor' project and select 'build order' -> and un-tick the projects you don't want to be build.

Funny you mentioned this, since I added this morning a new workspace configuration which is named 'WinReleaseUnicode_NoPlugins' :D (that was done before reading this post)
Pecan wrote:Even if I "restart" the debugger it recompiles the plugins.
Since it goes through the same build mechanism.
You can disable the 'build before debugging' option from 'Setttings -> Editor -> Dialogs', on this screen you can see the dialogs which you provided an answer and also checked 'remember this, and don't bug me again'

Eran