Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am in the process of upgrading our build server (Jenkins) to Delphi XE2. While compiling a runtime package the following error occurs:

ComponentsR.vrc(61): error RC2135: file not found: ComponentsR_Icon4.ico

There are no icons or resources in this runtime package, so I don't know what to do with this message. What's the "vrc" file btw?

Thanks for your help.

share|improve this question

1 Answer

up vote 4 down vote accepted

This happens while upgrading the dproj file of a package. The entry is created but the ico file is not (it is not used anyway).

Open the dproj file, search for the ico name and delete that entry.

share|improve this answer
Thank you! This would have cost me hours... – Smasher Nov 16 '12 at 9:31

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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