I have been struggling to get the MSBuild to successfully build my .dproj file for the last few days on a build machine.

First, I needed the EnvOptions.proj file from the developer's machine, which got me clear of the missing system.pas file, but now I am getting a compile error for a missing .dcu

C:\Program Files\CodeGear\RAD Studio\6.0\Bin\CodeGear.Delphi.Targets(123,3): error : myproject.dpr(17) Fatal: F1026 File not found: 'mymissing.dcu'

Now the path to "mymissing.dcu" is included in the Win32BrowsingPath of the EnvOptions.proj file, and I tried adding the path to the command prompt PATH which also does not work.

If I copy the .dcu directly into the working directory it can be found - but this is not much of a long term solution, as there are many other .dcu files that I would need to copy into the working directory.

Any ideas? I am using Delphi 2009.

link|improve this question

70% accept rate
have you installed Delphi only partially on the build machine? I have also been wondering which configuration files are necessary for MSBuild to resolve all dependencies in a Delphi dproj file. – mjn Jan 19 '10 at 18:33
I have fully installed Delphi, but not registered - though this is unlikely the issue as the licensed developer also has the same error message when compiling through RAD Studio Command Prompt. – Rob Hunter Jan 19 '10 at 18:53
feedback

2 Answers

up vote 2 down vote accepted

Try <DCC_UnitSearchPath> in your .dproj file.

link|improve this answer
This worked! I copied the <Win32BrowsingPath> from EnvOptions.proj into the .dproj file as <DCC_UnitSearchPath>. Then I followed this: qc.embarcadero.com/wc/qcmain.aspx?d=9619 to remove (BDS)\source\Win32\rtl\sys from the unit search path. Using the same logic I also had to remove $(BDS)\source\Win32\rtl\common. – Rob Hunter Jan 20 '10 at 14:51
feedback

Make sure that all the environment variables referenced in library search paths, e.g. $(BDS), are actually present in the environment of the command prompt.

link|improve this answer
By using the RAD Studio Command Prompt the $(BDS) gets populated from the rsvars.bat - not the problem in this case. – Rob Hunter Jan 20 '10 at 14:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.