Reputation: 3
I want to build an existing 32-bit application for 64-bit Windows in Delphi XE3. But I cannot select the 64-Bit platform because I doesn't see the node 'Target Platforms' in the Project Manager. Do you have any idea what the reason could be?
This is what I should see:
I have the Professional Edition and have already built a lot of WIN64 applications.
Upvotes: 0
Views: 2069
Reputation: 596352
Compare your project's DPROJ file to your other projects that work OK with 64bit. The failing project is likely missing a <Platforms>
node that enables non-Win32 platforms, so the Project Manager would hide the Target Platforms node from view.
<Platforms>
<Platform value="Win64">True</Platform>
<Platform value="OSX32">False</Platform>
<Platform value="Win32">True</Platform>
</Platforms>
Upvotes: 2