Reputation: 17732
I downloaded Embarcadero C++Builder to compile an pre-existing project I was given. When I try to build, it says it cannot find vcl/Classes.hpp
. I have searched my computer for the file, but it does niit appear to be there.
Where can I go download this library to be able to build this project? There does not seem to be any links on Embarcadero's website to download missing libraries.
Upvotes: 1
Views: 2810
Reputation: 125749
It's on my machine, in the %PROGRAMFILES%\Embarcadero\RAD Studio\9.0\Include\Windows\RTL
folder (the version of C++Builder that comes with RAD Studio XE2), same folder (except in 8.0 version) for XE, and in %PROGRAMFILES%\Embarcadero\RAD Studio\7.0\Include\vcl
for the version that comes with RAD Studio 2010. It appears that something may have gone wrong with your installation.
Per comments, you downloaded the XE2
trial version, which means you should find it in the first folder I listed above; if they're not there, you either have a problem with your installation or the headers aren't included in the trial. (I'd think they would be for type definitions at least, so I suspect the install.)
You could open a free support case with Embarcadero, though, since this seems like it could be an installation problem. If it's not, they can at least tell you that the files aren't included in the trial version.
Upvotes: 2