Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set the project `FrameworkType` from the IDE?

In your .dproj file, you can set the framework like this:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
    <PropertyGroup>
<!-- -->
        <FrameworkType>VCL</FrameworkType>
<!-- -->
    </PropertyGroup>
</Project>

FrameworkType can be None, VCL, FMX, or FMI (the latter is for FreePascal based iOS applications).

How can you set this FrameworkType from the IDE without manually editing the .dproj file (for instance when porting from one platform to the other)?
(Preferably for Delphi XE2 and up)

like image 915
Jeroen Wiert Pluimers Avatar asked Oct 16 '25 13:10

Jeroen Wiert Pluimers


1 Answers

You cannot modify this setting from the IDE.

like image 124
David Heffernan Avatar answered Oct 18 '25 13:10

David Heffernan