-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ SlidingButton FMX to Examples project group
- Loading branch information
John Kouraklis
committed
Sep 13, 2019
1 parent
8d221f9
commit aca44d7
Showing
15 changed files
with
1,821 additions
and
872 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1,162 @@ | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectGuid>{037C823E-E913-459C-BBE0-F29EA35721C3}</ProjectGuid> | ||
<ProjectVersion>12.3</ProjectVersion> | ||
<MainSource>CustomPlugin.dpr</MainSource> | ||
<Config Condition="'$(Config)'==''">Release</Config> | ||
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler> | ||
<Basis>True</Basis> | ||
<Platform>Win32</Platform> | ||
<AppType>Application</AppType> | ||
<FrameworkType>VCL</FrameworkType> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Basis' or '$(Base)'!=''"> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''"> | ||
<Cfg_1>true</Cfg_1> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''"> | ||
<Cfg_2>true</Cfg_2> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base)'!=''"> | ||
<DCC_UnitAlias>WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;$(DCC_UnitAlias)</DCC_UnitAlias> | ||
<DCC_DependencyCheckOutputName>CustomPlugin.exe</DCC_DependencyCheckOutputName> | ||
<DCC_ImageBase>00400000</DCC_ImageBase> | ||
<DCC_Platform>x86</DCC_Platform> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_1)'!=''"> | ||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> | ||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> | ||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> | ||
<DCC_DebugInformation>false</DCC_DebugInformation> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_2)'!=''"> | ||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<DelphiCompile Include="CustomPlugin.dpr"> | ||
<MainSource>MainSource</MainSource> | ||
</DelphiCompile> | ||
<DCCReference Include="Main.pas"> | ||
<Form>Form1</Form> | ||
</DCCReference> | ||
<DCCReference Include="AQPCustomPlugin.pas"/> | ||
<DCCReference Include="..\..\AnyiQuack.pas"/> | ||
<BuildConfiguration Include="Debug"> | ||
<Key>Cfg_2</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Basis"> | ||
<Key>Base</Key> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Release"> | ||
<Key>Cfg_1</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
</ItemGroup> | ||
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/> | ||
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/> | ||
<ProjectExtensions> | ||
<Borland.Personality>Delphi.Personality.12</Borland.Personality> | ||
<Borland.ProjectType/> | ||
<BorlandProject> | ||
<Delphi.Personality> | ||
<Source> | ||
<Source Name="MainSource">CustomPlugin.dpr</Source> | ||
</Source> | ||
<Parameters/> | ||
<VersionInfo> | ||
<VersionInfo Name="IncludeVerInfo">False</VersionInfo> | ||
<VersionInfo Name="AutoIncBuild">False</VersionInfo> | ||
<VersionInfo Name="MajorVer">1</VersionInfo> | ||
<VersionInfo Name="MinorVer">0</VersionInfo> | ||
<VersionInfo Name="Release">0</VersionInfo> | ||
<VersionInfo Name="Build">0</VersionInfo> | ||
<VersionInfo Name="Debug">False</VersionInfo> | ||
<VersionInfo Name="PreRelease">False</VersionInfo> | ||
<VersionInfo Name="Special">False</VersionInfo> | ||
<VersionInfo Name="Private">False</VersionInfo> | ||
<VersionInfo Name="DLL">False</VersionInfo> | ||
<VersionInfo Name="Locale">1031</VersionInfo> | ||
<VersionInfo Name="CodePage">1252</VersionInfo> | ||
</VersionInfo> | ||
<VersionInfoKeys> | ||
<VersionInfoKeys Name="CompanyName"/> | ||
<VersionInfoKeys Name="FileDescription"/> | ||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys> | ||
<VersionInfoKeys Name="InternalName"/> | ||
<VersionInfoKeys Name="LegalCopyright"/> | ||
<VersionInfoKeys Name="LegalTrademarks"/> | ||
<VersionInfoKeys Name="OriginalFilename"/> | ||
<VersionInfoKeys Name="ProductName"/> | ||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys> | ||
<VersionInfoKeys Name="Comments"/> | ||
</VersionInfoKeys> | ||
</Delphi.Personality> | ||
<Platforms> | ||
<Platform value="Win32">True</Platform> | ||
</Platforms> | ||
</BorlandProject> | ||
<ProjectFileVersion>12</ProjectFileVersion> | ||
</ProjectExtensions> | ||
</Project> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<ProjectGuid>{037C823E-E913-459C-BBE0-F29EA35721C3}</ProjectGuid> | ||
<ProjectVersion>18.7</ProjectVersion> | ||
<MainSource>CustomPlugin.dpr</MainSource> | ||
<Config Condition="'$(Config)'==''">Release</Config> | ||
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler> | ||
<Basis>True</Basis> | ||
<AppType>Application</AppType> | ||
<FrameworkType>VCL</FrameworkType> | ||
<Base>True</Base> | ||
<Platform Condition="'$(Platform)'==''">Win32</Platform> | ||
<TargetedPlatforms>1</TargetedPlatforms> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''"> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''"> | ||
<Base_Win32>true</Base_Win32> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''"> | ||
<Base_Win64>true</Base_Win64> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''"> | ||
<Cfg_1>true</Cfg_1> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''"> | ||
<Cfg_1_Win32>true</Cfg_1_Win32> | ||
<CfgParent>Cfg_1</CfgParent> | ||
<Cfg_1>true</Cfg_1> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''"> | ||
<Cfg_2>true</Cfg_2> | ||
<CfgParent>Base</CfgParent> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''"> | ||
<Cfg_2_Win32>true</Cfg_2_Win32> | ||
<CfgParent>Cfg_2</CfgParent> | ||
<Cfg_2>true</Cfg_2> | ||
<Base>true</Base> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base)'!=''"> | ||
<DCC_DependencyCheckOutputName>CustomPlugin.exe</DCC_DependencyCheckOutputName> | ||
<DCC_ImageBase>00400000</DCC_ImageBase> | ||
<DCC_Platform>x86</DCC_Platform> | ||
<SanitizedProjectName>CustomPlugin</SanitizedProjectName> | ||
<DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;Echo;Winapi;$(DCC_Namespace)</DCC_Namespace> | ||
<VerInfo_Locale>1031</VerInfo_Locale> | ||
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base_Win32)'!=''"> | ||
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace> | ||
<BT_BuildType>Debug</BT_BuildType> | ||
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> | ||
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys> | ||
<VerInfo_Locale>1033</VerInfo_Locale> | ||
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File> | ||
<Icon_MainIcon>CustomPlugin_Icon.ico</Icon_MainIcon> | ||
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes> | ||
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44> | ||
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Base_Win64)'!=''"> | ||
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File> | ||
<Icon_MainIcon>CustomPlugin_Icon.ico</Icon_MainIcon> | ||
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes> | ||
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44> | ||
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_1)'!=''"> | ||
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> | ||
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> | ||
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> | ||
<DCC_DebugInformation>0</DCC_DebugInformation> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''"> | ||
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes> | ||
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_2)'!=''"> | ||
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''"> | ||
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes> | ||
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<DelphiCompile Include="$(MainSource)"> | ||
<MainSource>MainSource</MainSource> | ||
</DelphiCompile> | ||
<DCCReference Include="Main.pas"> | ||
<Form>Form1</Form> | ||
</DCCReference> | ||
<DCCReference Include="AQPCustomPlugin.pas"/> | ||
<DCCReference Include="..\..\AnyiQuack.pas"/> | ||
<BuildConfiguration Include="Debug"> | ||
<Key>Cfg_2</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Base"> | ||
<Key>Base</Key> | ||
</BuildConfiguration> | ||
<BuildConfiguration Include="Release"> | ||
<Key>Cfg_1</Key> | ||
<CfgParent>Base</CfgParent> | ||
</BuildConfiguration> | ||
</ItemGroup> | ||
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/> | ||
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/> | ||
<ProjectExtensions> | ||
<Borland.Personality>Delphi.Personality.12</Borland.Personality> | ||
<Borland.ProjectType/> | ||
<BorlandProject> | ||
<Delphi.Personality> | ||
<Source> | ||
<Source Name="MainSource">CustomPlugin.dpr</Source> | ||
</Source> | ||
<Parameters/> | ||
<VersionInfo> | ||
<VersionInfo Name="IncludeVerInfo">False</VersionInfo> | ||
<VersionInfo Name="AutoIncBuild">False</VersionInfo> | ||
<VersionInfo Name="MajorVer">1</VersionInfo> | ||
<VersionInfo Name="MinorVer">0</VersionInfo> | ||
<VersionInfo Name="Release">0</VersionInfo> | ||
<VersionInfo Name="Build">0</VersionInfo> | ||
<VersionInfo Name="Debug">False</VersionInfo> | ||
<VersionInfo Name="PreRelease">False</VersionInfo> | ||
<VersionInfo Name="Special">False</VersionInfo> | ||
<VersionInfo Name="Private">False</VersionInfo> | ||
<VersionInfo Name="DLL">False</VersionInfo> | ||
<VersionInfo Name="Locale">1031</VersionInfo> | ||
<VersionInfo Name="CodePage">1252</VersionInfo> | ||
</VersionInfo> | ||
<VersionInfoKeys> | ||
<VersionInfoKeys Name="CompanyName"/> | ||
<VersionInfoKeys Name="FileDescription"/> | ||
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys> | ||
<VersionInfoKeys Name="InternalName"/> | ||
<VersionInfoKeys Name="LegalCopyright"/> | ||
<VersionInfoKeys Name="LegalTrademarks"/> | ||
<VersionInfoKeys Name="OriginalFilename"/> | ||
<VersionInfoKeys Name="ProductName"/> | ||
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys> | ||
<VersionInfoKeys Name="Comments"/> | ||
</VersionInfoKeys> | ||
</Delphi.Personality> | ||
<Platforms> | ||
<Platform value="Win32">True</Platform> | ||
<Platform value="Win64">False</Platform> | ||
</Platforms> | ||
</BorlandProject> | ||
<ProjectFileVersion>12</ProjectFileVersion> | ||
</ProjectExtensions> | ||
</Project> |
Binary file not shown.
Oops, something went wrong.