3
votes

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?

2
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
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

2 Answers

3
votes

Try <DCC_UnitSearchPath> in your .dproj file.

1
votes

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.