Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Delphi rebuilds all units

Status
Not open for further replies.

Kocky

Programmer
Oct 23, 2002
357
NL
Hello,

I have the following problem. Everytime I rebuild my application Delphi starts building around 156.000 lines of code. All the VCL units and all my components are compiled.
How can I disable this. All the dcu files are available in a directory that is specified in the browsing path.
Any ideas anyone ?

Greetings,

Pascal.
 
Presumably when you click compile only changed files recompile.

To stop library files recompiling on a build, remove the .pas (not the .dfm) files from the library to another directory.

If you want to debug into library files, ensure that build was done with debug flags on before moving and that directory where .pas files are moved to in is the browse path (not library path).

If you don't want to debug unto library files (normal option) ensure that you have done a build with debug options off before moving .pas files.

Good luck
Simon
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top