HTTPServer_Example.dproj 60 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{12A284B0-2F1A-474A-93AE-47DA93086299}</ProjectGuid>
  4. <ProjectVersion>19.0</ProjectVersion>
  5. <FrameworkType>FMX</FrameworkType>
  6. <MainSource>HTTPServer_Example.dpr</MainSource>
  7. <Base>True</Base>
  8. <Config Condition="'$(Config)'==''">Debug</Config>
  9. <Platform Condition="'$(Platform)'==''">Win32</Platform>
  10. <TargetedPlatforms>32787</TargetedPlatforms>
  11. <AppType>Application</AppType>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
  14. <Base>true</Base>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="('$(Platform)'=='Android' and '$(Base)'=='true') or '$(Base_Android)'!=''">
  17. <Base_Android>true</Base_Android>
  18. <CfgParent>Base</CfgParent>
  19. <Base>true</Base>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="('$(Platform)'=='Android64' and '$(Base)'=='true') or '$(Base_Android64)'!=''">
  22. <Base_Android64>true</Base_Android64>
  23. <CfgParent>Base</CfgParent>
  24. <Base>true</Base>
  25. </PropertyGroup>
  26. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
  27. <Base_Win32>true</Base_Win32>
  28. <CfgParent>Base</CfgParent>
  29. <Base>true</Base>
  30. </PropertyGroup>
  31. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
  32. <Base_Win64>true</Base_Win64>
  33. <CfgParent>Base</CfgParent>
  34. <Base>true</Base>
  35. </PropertyGroup>
  36. <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
  37. <Cfg_1>true</Cfg_1>
  38. <CfgParent>Base</CfgParent>
  39. <Base>true</Base>
  40. </PropertyGroup>
  41. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
  42. <Cfg_1_Win32>true</Cfg_1_Win32>
  43. <CfgParent>Cfg_1</CfgParent>
  44. <Cfg_1>true</Cfg_1>
  45. <Base>true</Base>
  46. </PropertyGroup>
  47. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
  48. <Cfg_1_Win64>true</Cfg_1_Win64>
  49. <CfgParent>Cfg_1</CfgParent>
  50. <Cfg_1>true</Cfg_1>
  51. <Base>true</Base>
  52. </PropertyGroup>
  53. <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
  54. <Cfg_2>true</Cfg_2>
  55. <CfgParent>Base</CfgParent>
  56. <Base>true</Base>
  57. </PropertyGroup>
  58. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
  59. <Cfg_2_Win32>true</Cfg_2_Win32>
  60. <CfgParent>Cfg_2</CfgParent>
  61. <Cfg_2>true</Cfg_2>
  62. <Base>true</Base>
  63. </PropertyGroup>
  64. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64)'!=''">
  65. <Cfg_2_Win64>true</Cfg_2_Win64>
  66. <CfgParent>Cfg_2</CfgParent>
  67. <Cfg_2>true</Cfg_2>
  68. <Base>true</Base>
  69. </PropertyGroup>
  70. <PropertyGroup Condition="'$(Base)'!=''">
  71. <DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
  72. <DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
  73. <DCC_E>false</DCC_E>
  74. <DCC_N>false</DCC_N>
  75. <DCC_S>false</DCC_S>
  76. <DCC_F>false</DCC_F>
  77. <DCC_K>false</DCC_K>
  78. <DCC_UsePackage>RESTComponents;emsclientfiredac;DataSnapFireDAC;FireDACIBDriver;emsclient;FireDACCommon;RESTBackendComponents;soapserver;CloudService;FireDACCommonDriver;inet;FireDAC;FireDACSqliteDriver;soaprtl;soapmidas;$(DCC_UsePackage)</DCC_UsePackage>
  79. <DCC_Namespace>System;Data;$(DCC_Namespace)</DCC_Namespace>
  80. <AUP_ACCESS_COARSE_LOCATION>true</AUP_ACCESS_COARSE_LOCATION>
  81. <AUP_ACCESS_FINE_LOCATION>true</AUP_ACCESS_FINE_LOCATION>
  82. <AUP_CALL_PHONE>true</AUP_CALL_PHONE>
  83. <AUP_CAMERA>true</AUP_CAMERA>
  84. <AUP_INTERNET>true</AUP_INTERNET>
  85. <AUP_READ_CALENDAR>true</AUP_READ_CALENDAR>
  86. <AUP_READ_EXTERNAL_STORAGE>true</AUP_READ_EXTERNAL_STORAGE>
  87. <AUP_WRITE_CALENDAR>true</AUP_WRITE_CALENDAR>
  88. <AUP_WRITE_EXTERNAL_STORAGE>true</AUP_WRITE_EXTERNAL_STORAGE>
  89. <AUP_READ_PHONE_STATE>true</AUP_READ_PHONE_STATE>
  90. <Icon_MainIcon>$(BDS)\bin\delphi_PROJECTICON.ico</Icon_MainIcon>
  91. <Icns_MainIcns>$(BDS)\bin\delphi_PROJECTICNS.icns</Icns_MainIcns>
  92. <SanitizedProjectName>HTTPServer_Example</SanitizedProjectName>
  93. <DCC_UnitSearchPath>..\..\Source;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
  94. </PropertyGroup>
  95. <PropertyGroup Condition="'$(Base_Android)'!=''">
  96. <DCC_UsePackage>DBXSqliteDriver;DBXInterBaseDriver;tethering;bindcompfmx;fmx;FireDACDBXDriver;dbexpress;IndyCore;dsnap;DataSnapCommon;bindengine;DataSnapClient;bindcompdbx;IndyIPCommon;IndyIPServer;IndySystem;fmxFireDAC;DbxCommonDriver;xmlrtl;DataSnapNativeClient;FireDACDSDriver;rtl;DbxClientDriver;CustomIPTransport;bindcomp;IndyIPClient;dbxcds;dsnapxml;DataSnapProviderClient;dbrtl;IndyProtocols;$(DCC_UsePackage)</DCC_UsePackage>
  97. <VerInfo_Keys>package=org.brookframework.httpsrv;label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey=</VerInfo_Keys>
  98. <BT_BuildType>Debug</BT_BuildType>
  99. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  100. <Android_LauncherIcon36>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png</Android_LauncherIcon36>
  101. <Android_LauncherIcon48>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png</Android_LauncherIcon48>
  102. <Android_LauncherIcon72>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png</Android_LauncherIcon72>
  103. <Android_LauncherIcon96>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png</Android_LauncherIcon96>
  104. <Android_LauncherIcon144>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png</Android_LauncherIcon144>
  105. <Android_SplashImage426>$(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png</Android_SplashImage426>
  106. <Android_SplashImage470>$(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png</Android_SplashImage470>
  107. <Android_SplashImage640>$(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png</Android_SplashImage640>
  108. <Android_SplashImage960>$(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png</Android_SplashImage960>
  109. <EnabledSysJars>android-support-v4.dex.jar;cloud-messaging.dex.jar;fmx.dex.jar;google-analytics-v2.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar;google-play-services-ads-7.0.0.dex.jar;google-play-services-analytics-7.0.0.dex.jar;google-play-services-base-7.0.0.dex.jar;google-play-services-identity-7.0.0.dex.jar;google-play-services-maps-7.0.0.dex.jar;google-play-services-panorama-7.0.0.dex.jar;google-play-services-plus-7.0.0.dex.jar;google-play-services-wallet-7.0.0.dex.jar</EnabledSysJars>
  110. <AUP_ACCESS_COARSE_LOCATION>false</AUP_ACCESS_COARSE_LOCATION>
  111. <AUP_ACCESS_FINE_LOCATION>false</AUP_ACCESS_FINE_LOCATION>
  112. <AUP_CALL_PHONE>false</AUP_CALL_PHONE>
  113. <AUP_CAMERA>false</AUP_CAMERA>
  114. <AUP_READ_CALENDAR>false</AUP_READ_CALENDAR>
  115. <AUP_READ_EXTERNAL_STORAGE>false</AUP_READ_EXTERNAL_STORAGE>
  116. <AUP_READ_PHONE_STATE>false</AUP_READ_PHONE_STATE>
  117. <AUP_WRITE_CALENDAR>false</AUP_WRITE_CALENDAR>
  118. <AUP_WRITE_EXTERNAL_STORAGE>false</AUP_WRITE_EXTERNAL_STORAGE>
  119. <VerInfo_Build>1</VerInfo_Build>
  120. <IncludeAndroid_Splash>False</IncludeAndroid_Splash>
  121. <Android_NotificationIcon24>$(BDS)\bin\Artwork\Android\FM_NotificationIcon_24x24.png</Android_NotificationIcon24>
  122. <Android_NotificationIcon36>$(BDS)\bin\Artwork\Android\FM_NotificationIcon_36x36.png</Android_NotificationIcon36>
  123. <Android_NotificationIcon48>$(BDS)\bin\Artwork\Android\FM_NotificationIcon_48x48.png</Android_NotificationIcon48>
  124. <Android_NotificationIcon72>$(BDS)\bin\Artwork\Android\FM_NotificationIcon_72x72.png</Android_NotificationIcon72>
  125. <Android_NotificationIcon96>$(BDS)\bin\Artwork\Android\FM_NotificationIcon_96x96.png</Android_NotificationIcon96>
  126. </PropertyGroup>
  127. <PropertyGroup Condition="'$(Base_Android64)'!=''">
  128. <VerInfo_Keys>package=org.brookframework.httpsrv;label=$(MSBuildProjectName);versionCode=1;versionName=1.0.0;persistent=False;restoreAnyVersion=False;installLocation=auto;largeHeap=False;theme=TitleBar;hardwareAccelerated=true;apiKey=</VerInfo_Keys>
  129. <BT_BuildType>Debug</BT_BuildType>
  130. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  131. <Base_Android>true</Base_Android>
  132. <CfgParent>Base</CfgParent>
  133. <Base>true</Base>
  134. <DCC_UsePackage>DBXSqliteDriver;DBXInterBaseDriver;tethering;bindcompfmx;fmx;FireDACDBXDriver;dbexpress;IndyCore;dsnap;DataSnapCommon;bindengine;DataSnapClient;bindcompdbx;IndyIPCommon;IndyIPServer;IndySystem;fmxFireDAC;DbxCommonDriver;xmlrtl;DataSnapNativeClient;FireDACDSDriver;rtl;DbxClientDriver;CustomIPTransport;bindcomp;IndyIPClient;dbxcds;dsnapxml;DataSnapProviderClient;dbrtl;IndyProtocols;$(DCC_UsePackage);$(DCC_UsePackage)</DCC_UsePackage>
  135. <Android_LauncherIcon36>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png</Android_LauncherIcon36>
  136. <Android_LauncherIcon48>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png</Android_LauncherIcon48>
  137. <Android_LauncherIcon72>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png</Android_LauncherIcon72>
  138. <Android_LauncherIcon96>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png</Android_LauncherIcon96>
  139. <Android_LauncherIcon144>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png</Android_LauncherIcon144>
  140. <Android_SplashImage426>$(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png</Android_SplashImage426>
  141. <Android_SplashImage470>$(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png</Android_SplashImage470>
  142. <Android_SplashImage640>$(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png</Android_SplashImage640>
  143. <Android_SplashImage960>$(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png</Android_SplashImage960>
  144. <EnabledSysJars>android-support-v4.dex.jar;cloud-messaging.dex.jar;fmx.dex.jar;google-analytics-v2.dex.jar;google-play-billing.dex.jar;google-play-licensing.dex.jar;google-play-services-ads-7.0.0.dex.jar;google-play-services-analytics-7.0.0.dex.jar;google-play-services-base-7.0.0.dex.jar;google-play-services-identity-7.0.0.dex.jar;google-play-services-maps-7.0.0.dex.jar;google-play-services-panorama-7.0.0.dex.jar;google-play-services-plus-7.0.0.dex.jar;google-play-services-wallet-7.0.0.dex.jar</EnabledSysJars>
  145. <AUP_ACCESS_COARSE_LOCATION>false</AUP_ACCESS_COARSE_LOCATION>
  146. <AUP_ACCESS_FINE_LOCATION>false</AUP_ACCESS_FINE_LOCATION>
  147. <AUP_CALL_PHONE>false</AUP_CALL_PHONE>
  148. <AUP_CAMERA>false</AUP_CAMERA>
  149. <AUP_READ_CALENDAR>false</AUP_READ_CALENDAR>
  150. <AUP_READ_EXTERNAL_STORAGE>false</AUP_READ_EXTERNAL_STORAGE>
  151. <AUP_READ_PHONE_STATE>false</AUP_READ_PHONE_STATE>
  152. <AUP_WRITE_CALENDAR>false</AUP_WRITE_CALENDAR>
  153. <AUP_WRITE_EXTERNAL_STORAGE>false</AUP_WRITE_EXTERNAL_STORAGE>
  154. <VerInfo_Build>1</VerInfo_Build>
  155. <IncludeAndroid_Splash>False</IncludeAndroid_Splash>
  156. </PropertyGroup>
  157. <PropertyGroup Condition="'$(Base_Win32)'!=''">
  158. <DCC_UsePackage>DBXSqliteDriver;DataSnapServerMidas;DBXDb2Driver;DBXInterBaseDriver;vclactnband;vclFireDAC;svnui;tethering;FireDACADSDriver;DBXMSSQLDriver;DatasnapConnectorsFreePascal;FireDACMSSQLDriver;vcltouch;vcldb;bindcompfmx;svn;DBXOracleDriver;inetdb;emsedge;fmx;fmxdae;FireDACDBXDriver;dbexpress;IndyCore;vclx;dsnap;DataSnapCommon;DataSnapConnectors;VCLRESTComponents;vclie;bindengine;DBXMySQLDriver;FireDACOracleDriver;FireDACMySQLDriver;DBXFirebirdDriver;FireDACCommonODBC;DataSnapClient;bindcompdbx;IndyIPCommon;vcl;DBXSybaseASEDriver;IndyIPServer;IndySystem;FireDACDb2Driver;dsnapcon;BrookFramework40;FireDACMSAccDriver;fmxFireDAC;FireDACInfxDriver;vclimg;emshosting;FireDACPgDriver;FireDACASADriver;DBXOdbcDriver;FireDACTDataDriver;DbxCommonDriver;DataSnapServer;xmlrtl;DataSnapNativeClient;fmxobj;vclwinx;FireDACDSDriver;rtl;DbxClientDriver;DBXSybaseASADriver;CustomIPTransport;vcldsnap;bindcomp;appanalytics;DBXInformixDriver;IndyIPClient;bindcompvcl;dbxcds;VclSmp;adortl;FireDACODBCDriver;DataSnapIndy10ServerTransport;dsnapxml;DataSnapProviderClient;dbrtl;inetdbxpress;FireDACMongoDBDriver;IndyProtocols;fmxase;$(DCC_UsePackage)</DCC_UsePackage>
  159. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
  160. <BT_BuildType>Debug</BT_BuildType>
  161. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  162. <VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
  163. <VerInfo_Locale>1033</VerInfo_Locale>
  164. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  165. <UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
  166. <UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
  167. </PropertyGroup>
  168. <PropertyGroup Condition="'$(Base_Win64)'!=''">
  169. <DCC_UsePackage>DBXSqliteDriver;DataSnapServerMidas;DBXDb2Driver;DBXInterBaseDriver;vclactnband;vclFireDAC;tethering;FireDACADSDriver;DBXMSSQLDriver;DatasnapConnectorsFreePascal;FireDACMSSQLDriver;vcltouch;vcldb;bindcompfmx;DBXOracleDriver;inetdb;emsedge;fmx;fmxdae;FireDACDBXDriver;dbexpress;IndyCore;vclx;dsnap;DataSnapCommon;DataSnapConnectors;VCLRESTComponents;vclie;bindengine;DBXMySQLDriver;FireDACOracleDriver;FireDACMySQLDriver;DBXFirebirdDriver;FireDACCommonODBC;DataSnapClient;bindcompdbx;IndyIPCommon;vcl;DBXSybaseASEDriver;IndyIPServer;IndySystem;FireDACDb2Driver;dsnapcon;FireDACMSAccDriver;fmxFireDAC;FireDACInfxDriver;vclimg;emshosting;FireDACPgDriver;FireDACASADriver;DBXOdbcDriver;FireDACTDataDriver;DbxCommonDriver;DataSnapServer;xmlrtl;DataSnapNativeClient;fmxobj;vclwinx;FireDACDSDriver;rtl;DbxClientDriver;DBXSybaseASADriver;CustomIPTransport;vcldsnap;bindcomp;appanalytics;DBXInformixDriver;IndyIPClient;bindcompvcl;dbxcds;VclSmp;adortl;FireDACODBCDriver;DataSnapIndy10ServerTransport;dsnapxml;DataSnapProviderClient;dbrtl;inetdbxpress;FireDACMongoDBDriver;IndyProtocols;fmxase;$(DCC_UsePackage)</DCC_UsePackage>
  170. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
  171. <BT_BuildType>Debug</BT_BuildType>
  172. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  173. <VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
  174. <VerInfo_Locale>1033</VerInfo_Locale>
  175. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  176. <UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
  177. <UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
  178. </PropertyGroup>
  179. <PropertyGroup Condition="'$(Cfg_1)'!=''">
  180. <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
  181. <DCC_DebugDCUs>true</DCC_DebugDCUs>
  182. <DCC_Optimize>false</DCC_Optimize>
  183. <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
  184. <DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
  185. <DCC_RemoteDebug>true</DCC_RemoteDebug>
  186. </PropertyGroup>
  187. <PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
  188. <DCC_RemoteDebug>false</DCC_RemoteDebug>
  189. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  190. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  191. <VerInfo_Locale>1033</VerInfo_Locale>
  192. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  193. </PropertyGroup>
  194. <PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
  195. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  196. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  197. </PropertyGroup>
  198. <PropertyGroup Condition="'$(Cfg_2)'!=''">
  199. <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
  200. <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
  201. <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
  202. <DCC_DebugInformation>0</DCC_DebugInformation>
  203. </PropertyGroup>
  204. <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
  205. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  206. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  207. </PropertyGroup>
  208. <PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
  209. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  210. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  211. </PropertyGroup>
  212. <ItemGroup>
  213. <DelphiCompile Include="$(MainSource)">
  214. <MainSource>MainSource</MainSource>
  215. </DelphiCompile>
  216. <DCCReference Include="HTTPServer_frMain.pas">
  217. <Form>frMain</Form>
  218. <FormType>fmx</FormType>
  219. </DCCReference>
  220. <BuildConfiguration Include="Release">
  221. <Key>Cfg_2</Key>
  222. <CfgParent>Base</CfgParent>
  223. </BuildConfiguration>
  224. <BuildConfiguration Include="Base">
  225. <Key>Base</Key>
  226. </BuildConfiguration>
  227. <BuildConfiguration Include="Debug">
  228. <Key>Cfg_1</Key>
  229. <CfgParent>Base</CfgParent>
  230. </BuildConfiguration>
  231. </ItemGroup>
  232. <ProjectExtensions>
  233. <Borland.Personality>Delphi.Personality.12</Borland.Personality>
  234. <Borland.ProjectType>Application</Borland.ProjectType>
  235. <BorlandProject>
  236. <Delphi.Personality>
  237. <Source>
  238. <Source Name="MainSource">HTTPServer_Example.dpr</Source>
  239. </Source>
  240. <Excluded_Packages>
  241. <Excluded_Packages Name="$(BDSBIN)\bcboffice2k250.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
  242. <Excluded_Packages Name="$(BDSBIN)\bcbofficexp250.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
  243. <Excluded_Packages Name="$(BDSBIN)\dcloffice2k250.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
  244. <Excluded_Packages Name="$(BDSBIN)\dclofficexp250.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
  245. </Excluded_Packages>
  246. </Delphi.Personality>
  247. <Deployment Version="3">
  248. <DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png" Configuration="Debug" Class="Android_LauncherIcon36">
  249. <Platform Name="Android">
  250. <RemoteName>ic_launcher.png</RemoteName>
  251. <Overwrite>true</Overwrite>
  252. </Platform>
  253. </DeployFile>
  254. <DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png" Configuration="Debug" Class="Android_LauncherIcon144">
  255. <Platform Name="Android">
  256. <RemoteName>ic_launcher.png</RemoteName>
  257. <Overwrite>true</Overwrite>
  258. </Platform>
  259. </DeployFile>
  260. <DeployFile LocalName="$(BDS)\lib\android\debug\armeabi\libnative-activity.so" Configuration="Debug" Class="AndroidLibnativeArmeabiFile">
  261. <Platform Name="Android">
  262. <RemoteName>libHTTPServer_Example.so</RemoteName>
  263. <Overwrite>true</Overwrite>
  264. </Platform>
  265. </DeployFile>
  266. <DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png" Configuration="Debug" Class="Android_LauncherIcon72">
  267. <Platform Name="Android">
  268. <RemoteName>ic_launcher.png</RemoteName>
  269. <Overwrite>true</Overwrite>
  270. </Platform>
  271. </DeployFile>
  272. <DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png" Configuration="Debug" Class="Android_SplashImage640">
  273. <Platform Name="Android">
  274. <RemoteName>splash_image.png</RemoteName>
  275. <Overwrite>true</Overwrite>
  276. </Platform>
  277. </DeployFile>
  278. <DeployFile LocalName="$(BDS)\Redist\iossimulator\libcgunwind.1.0.dylib" Class="DependencyModule">
  279. <Platform Name="iOSSimulator">
  280. <Overwrite>true</Overwrite>
  281. </Platform>
  282. </DeployFile>
  283. <DeployFile LocalName="Android\Debug\AndroidManifest.xml" Configuration="Debug" Class="ProjectAndroidManifest">
  284. <Platform Name="Android">
  285. <Overwrite>true</Overwrite>
  286. </Platform>
  287. </DeployFile>
  288. <DeployFile LocalName="$(BDS)\Redist\osx32\libcgsqlite3.dylib" Class="DependencyModule">
  289. <Platform Name="OSX32">
  290. <Overwrite>true</Overwrite>
  291. </Platform>
  292. </DeployFile>
  293. <DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png" Configuration="Debug" Class="Android_SplashImage470">
  294. <Platform Name="Android">
  295. <RemoteName>splash_image.png</RemoteName>
  296. <Overwrite>true</Overwrite>
  297. </Platform>
  298. </DeployFile>
  299. <DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png" Configuration="Debug" Class="Android_SplashImage426">
  300. <Platform Name="Android">
  301. <RemoteName>splash_image.png</RemoteName>
  302. <Overwrite>true</Overwrite>
  303. </Platform>
  304. </DeployFile>
  305. <DeployFile LocalName="Android\Debug\libHTTPServer_Example.so" Configuration="Debug" Class="ProjectOutput">
  306. <Platform Name="Android">
  307. <RemoteName>libHTTPServer_Example.so</RemoteName>
  308. <Overwrite>true</Overwrite>
  309. </Platform>
  310. </DeployFile>
  311. <DeployFile LocalName="$(BDS)\Redist\osx32\libcgunwind.1.0.dylib" Class="DependencyModule">
  312. <Platform Name="OSX32">
  313. <Overwrite>true</Overwrite>
  314. </Platform>
  315. </DeployFile>
  316. <DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png" Configuration="Debug" Class="Android_LauncherIcon96">
  317. <Platform Name="Android">
  318. <RemoteName>ic_launcher.png</RemoteName>
  319. <Overwrite>true</Overwrite>
  320. </Platform>
  321. </DeployFile>
  322. <DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png" Configuration="Debug" Class="Android_SplashImage960">
  323. <Platform Name="Android">
  324. <RemoteName>splash_image.png</RemoteName>
  325. <Overwrite>true</Overwrite>
  326. </Platform>
  327. </DeployFile>
  328. <DeployFile LocalName="lib\armeabi-v7a\libbrook.so" Configuration="Debug" Class="File">
  329. <Platform Name="Android">
  330. <RemoteDir>library\lib\armeabi-v7a\</RemoteDir>
  331. <RemoteName>libbrook.so</RemoteName>
  332. <Overwrite>true</Overwrite>
  333. </Platform>
  334. </DeployFile>
  335. <DeployFile LocalName="$(BDS)\Redist\iossimulator\libpcre.dylib" Class="DependencyModule">
  336. <Platform Name="iOSSimulator">
  337. <Overwrite>true</Overwrite>
  338. </Platform>
  339. </DeployFile>
  340. <DeployFile LocalName="$(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png" Configuration="Debug" Class="Android_LauncherIcon48">
  341. <Platform Name="Android">
  342. <RemoteName>ic_launcher.png</RemoteName>
  343. <Overwrite>true</Overwrite>
  344. </Platform>
  345. </DeployFile>
  346. <DeployFile LocalName="$(BDS)\Redist\iossimulator\libPCRE.dylib" Class="DependencyModule">
  347. <Platform Name="iOSSimulator">
  348. <Overwrite>true</Overwrite>
  349. </Platform>
  350. </DeployFile>
  351. <DeployFile LocalName="$(BDS)\lib\android\debug\mips\libnative-activity.so" Configuration="Debug" Class="AndroidLibnativeMipsFile">
  352. <Platform Name="Android">
  353. <RemoteName>libHTTPServer_Example.so</RemoteName>
  354. <Overwrite>true</Overwrite>
  355. </Platform>
  356. </DeployFile>
  357. <DeployFile LocalName="Win32\Debug\HTTPServer_Example.exe" Configuration="Debug" Class="ProjectOutput">
  358. <Platform Name="Win32">
  359. <RemoteName>HTTPServer_Example.exe</RemoteName>
  360. <Overwrite>true</Overwrite>
  361. </Platform>
  362. </DeployFile>
  363. <DeployFile LocalName="$(NDKBasePath)\prebuilt\android-arm\gdbserver\gdbserver" Configuration="Debug" Class="AndroidGDBServer">
  364. <Platform Name="Android">
  365. <Overwrite>true</Overwrite>
  366. </Platform>
  367. </DeployFile>
  368. <DeployFile LocalName="Android\Debug\classes.dex" Configuration="Debug" Class="AndroidClassesDexFile">
  369. <Platform Name="Android">
  370. <RemoteName>classes.dex</RemoteName>
  371. <Overwrite>true</Overwrite>
  372. </Platform>
  373. </DeployFile>
  374. <DeployClass Name="AdditionalDebugSymbols">
  375. <Platform Name="iOSSimulator">
  376. <Operation>1</Operation>
  377. </Platform>
  378. <Platform Name="OSX32">
  379. <RemoteDir>Contents\MacOS</RemoteDir>
  380. <Operation>1</Operation>
  381. </Platform>
  382. <Platform Name="Win32">
  383. <Operation>0</Operation>
  384. </Platform>
  385. </DeployClass>
  386. <DeployClass Name="AndroidClassesDexFile">
  387. <Platform Name="Android">
  388. <RemoteDir>classes</RemoteDir>
  389. <Operation>1</Operation>
  390. </Platform>
  391. <Platform Name="Android64">
  392. <RemoteDir>classes</RemoteDir>
  393. <Operation>1</Operation>
  394. </Platform>
  395. </DeployClass>
  396. <DeployClass Name="AndroidFileProvider">
  397. <Platform Name="Android">
  398. <RemoteDir>res\xml</RemoteDir>
  399. <Operation>1</Operation>
  400. </Platform>
  401. <Platform Name="Android64">
  402. <RemoteDir>res\xml</RemoteDir>
  403. <Operation>1</Operation>
  404. </Platform>
  405. </DeployClass>
  406. <DeployClass Name="AndroidGDBServer">
  407. <Platform Name="Android">
  408. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  409. <Operation>1</Operation>
  410. </Platform>
  411. </DeployClass>
  412. <DeployClass Name="AndroidLibnativeArmeabiFile">
  413. <Platform Name="Android">
  414. <RemoteDir>library\lib\armeabi</RemoteDir>
  415. <Operation>1</Operation>
  416. </Platform>
  417. <Platform Name="Android64">
  418. <RemoteDir>library\lib\armeabi</RemoteDir>
  419. <Operation>1</Operation>
  420. </Platform>
  421. </DeployClass>
  422. <DeployClass Name="AndroidLibnativeArmeabiv7aFile">
  423. <Platform Name="Android64">
  424. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  425. <Operation>1</Operation>
  426. </Platform>
  427. </DeployClass>
  428. <DeployClass Name="AndroidLibnativeMipsFile">
  429. <Platform Name="Android">
  430. <RemoteDir>library\lib\mips</RemoteDir>
  431. <Operation>1</Operation>
  432. </Platform>
  433. <Platform Name="Android64">
  434. <RemoteDir>library\lib\mips</RemoteDir>
  435. <Operation>1</Operation>
  436. </Platform>
  437. </DeployClass>
  438. <DeployClass Name="AndroidServiceOutput">
  439. <Platform Name="Android">
  440. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  441. <Operation>1</Operation>
  442. </Platform>
  443. <Platform Name="Android64">
  444. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  445. <Operation>1</Operation>
  446. </Platform>
  447. </DeployClass>
  448. <DeployClass Name="AndroidServiceOutput_Android32">
  449. <Platform Name="Android64">
  450. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  451. <Operation>1</Operation>
  452. </Platform>
  453. </DeployClass>
  454. <DeployClass Name="AndroidSplashImageDef">
  455. <Platform Name="Android">
  456. <RemoteDir>res\drawable</RemoteDir>
  457. <Operation>1</Operation>
  458. </Platform>
  459. <Platform Name="Android64">
  460. <RemoteDir>res\drawable</RemoteDir>
  461. <Operation>1</Operation>
  462. </Platform>
  463. </DeployClass>
  464. <DeployClass Name="AndroidSplashStyles">
  465. <Platform Name="Android">
  466. <RemoteDir>res\values</RemoteDir>
  467. <Operation>1</Operation>
  468. </Platform>
  469. <Platform Name="Android64">
  470. <RemoteDir>res\values</RemoteDir>
  471. <Operation>1</Operation>
  472. </Platform>
  473. </DeployClass>
  474. <DeployClass Name="AndroidSplashStylesV21">
  475. <Platform Name="Android">
  476. <RemoteDir>res\values-v21</RemoteDir>
  477. <Operation>1</Operation>
  478. </Platform>
  479. <Platform Name="Android64">
  480. <RemoteDir>res\values-v21</RemoteDir>
  481. <Operation>1</Operation>
  482. </Platform>
  483. </DeployClass>
  484. <DeployClass Name="Android_Colors">
  485. <Platform Name="Android">
  486. <RemoteDir>res\values</RemoteDir>
  487. <Operation>1</Operation>
  488. </Platform>
  489. <Platform Name="Android64">
  490. <RemoteDir>res\values</RemoteDir>
  491. <Operation>1</Operation>
  492. </Platform>
  493. </DeployClass>
  494. <DeployClass Name="Android_DefaultAppIcon">
  495. <Platform Name="Android">
  496. <RemoteDir>res\drawable</RemoteDir>
  497. <Operation>1</Operation>
  498. </Platform>
  499. <Platform Name="Android64">
  500. <RemoteDir>res\drawable</RemoteDir>
  501. <Operation>1</Operation>
  502. </Platform>
  503. </DeployClass>
  504. <DeployClass Name="Android_LauncherIcon144">
  505. <Platform Name="Android">
  506. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  507. <Operation>1</Operation>
  508. </Platform>
  509. <Platform Name="Android64">
  510. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  511. <Operation>1</Operation>
  512. </Platform>
  513. </DeployClass>
  514. <DeployClass Name="Android_LauncherIcon36">
  515. <Platform Name="Android">
  516. <RemoteDir>res\drawable-ldpi</RemoteDir>
  517. <Operation>1</Operation>
  518. </Platform>
  519. <Platform Name="Android64">
  520. <RemoteDir>res\drawable-ldpi</RemoteDir>
  521. <Operation>1</Operation>
  522. </Platform>
  523. </DeployClass>
  524. <DeployClass Name="Android_LauncherIcon48">
  525. <Platform Name="Android">
  526. <RemoteDir>res\drawable-mdpi</RemoteDir>
  527. <Operation>1</Operation>
  528. </Platform>
  529. <Platform Name="Android64">
  530. <RemoteDir>res\drawable-mdpi</RemoteDir>
  531. <Operation>1</Operation>
  532. </Platform>
  533. </DeployClass>
  534. <DeployClass Name="Android_LauncherIcon72">
  535. <Platform Name="Android">
  536. <RemoteDir>res\drawable-hdpi</RemoteDir>
  537. <Operation>1</Operation>
  538. </Platform>
  539. <Platform Name="Android64">
  540. <RemoteDir>res\drawable-hdpi</RemoteDir>
  541. <Operation>1</Operation>
  542. </Platform>
  543. </DeployClass>
  544. <DeployClass Name="Android_LauncherIcon96">
  545. <Platform Name="Android">
  546. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  547. <Operation>1</Operation>
  548. </Platform>
  549. <Platform Name="Android64">
  550. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  551. <Operation>1</Operation>
  552. </Platform>
  553. </DeployClass>
  554. <DeployClass Name="Android_NotificationIcon24">
  555. <Platform Name="Android">
  556. <RemoteDir>res\drawable-mdpi</RemoteDir>
  557. <Operation>1</Operation>
  558. </Platform>
  559. <Platform Name="Android64">
  560. <RemoteDir>res\drawable-mdpi</RemoteDir>
  561. <Operation>1</Operation>
  562. </Platform>
  563. </DeployClass>
  564. <DeployClass Name="Android_NotificationIcon36">
  565. <Platform Name="Android">
  566. <RemoteDir>res\drawable-hdpi</RemoteDir>
  567. <Operation>1</Operation>
  568. </Platform>
  569. <Platform Name="Android64">
  570. <RemoteDir>res\drawable-hdpi</RemoteDir>
  571. <Operation>1</Operation>
  572. </Platform>
  573. </DeployClass>
  574. <DeployClass Name="Android_NotificationIcon48">
  575. <Platform Name="Android">
  576. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  577. <Operation>1</Operation>
  578. </Platform>
  579. <Platform Name="Android64">
  580. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  581. <Operation>1</Operation>
  582. </Platform>
  583. </DeployClass>
  584. <DeployClass Name="Android_NotificationIcon72">
  585. <Platform Name="Android">
  586. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  587. <Operation>1</Operation>
  588. </Platform>
  589. <Platform Name="Android64">
  590. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  591. <Operation>1</Operation>
  592. </Platform>
  593. </DeployClass>
  594. <DeployClass Name="Android_NotificationIcon96">
  595. <Platform Name="Android">
  596. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  597. <Operation>1</Operation>
  598. </Platform>
  599. <Platform Name="Android64">
  600. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  601. <Operation>1</Operation>
  602. </Platform>
  603. </DeployClass>
  604. <DeployClass Name="Android_SplashImage426">
  605. <Platform Name="Android">
  606. <RemoteDir>res\drawable-small</RemoteDir>
  607. <Operation>1</Operation>
  608. </Platform>
  609. <Platform Name="Android64">
  610. <RemoteDir>res\drawable-small</RemoteDir>
  611. <Operation>1</Operation>
  612. </Platform>
  613. </DeployClass>
  614. <DeployClass Name="Android_SplashImage470">
  615. <Platform Name="Android">
  616. <RemoteDir>res\drawable-normal</RemoteDir>
  617. <Operation>1</Operation>
  618. </Platform>
  619. <Platform Name="Android64">
  620. <RemoteDir>res\drawable-normal</RemoteDir>
  621. <Operation>1</Operation>
  622. </Platform>
  623. </DeployClass>
  624. <DeployClass Name="Android_SplashImage640">
  625. <Platform Name="Android">
  626. <RemoteDir>res\drawable-large</RemoteDir>
  627. <Operation>1</Operation>
  628. </Platform>
  629. <Platform Name="Android64">
  630. <RemoteDir>res\drawable-large</RemoteDir>
  631. <Operation>1</Operation>
  632. </Platform>
  633. </DeployClass>
  634. <DeployClass Name="Android_SplashImage960">
  635. <Platform Name="Android">
  636. <RemoteDir>res\drawable-xlarge</RemoteDir>
  637. <Operation>1</Operation>
  638. </Platform>
  639. <Platform Name="Android64">
  640. <RemoteDir>res\drawable-xlarge</RemoteDir>
  641. <Operation>1</Operation>
  642. </Platform>
  643. </DeployClass>
  644. <DeployClass Name="Android_Strings">
  645. <Platform Name="Android">
  646. <RemoteDir>res\values</RemoteDir>
  647. <Operation>1</Operation>
  648. </Platform>
  649. <Platform Name="Android64">
  650. <RemoteDir>res\values</RemoteDir>
  651. <Operation>1</Operation>
  652. </Platform>
  653. </DeployClass>
  654. <DeployClass Name="DebugSymbols">
  655. <Platform Name="iOSSimulator">
  656. <Operation>1</Operation>
  657. </Platform>
  658. <Platform Name="OSX32">
  659. <RemoteDir>Contents\MacOS</RemoteDir>
  660. <Operation>1</Operation>
  661. </Platform>
  662. <Platform Name="Win32">
  663. <Operation>0</Operation>
  664. </Platform>
  665. </DeployClass>
  666. <DeployClass Name="DependencyFramework">
  667. <Platform Name="OSX32">
  668. <RemoteDir>Contents\MacOS</RemoteDir>
  669. <Operation>1</Operation>
  670. <Extensions>.framework</Extensions>
  671. </Platform>
  672. <Platform Name="OSX64">
  673. <RemoteDir>Contents\MacOS</RemoteDir>
  674. <Operation>1</Operation>
  675. <Extensions>.framework</Extensions>
  676. </Platform>
  677. <Platform Name="Win32">
  678. <Operation>0</Operation>
  679. </Platform>
  680. </DeployClass>
  681. <DeployClass Name="DependencyModule">
  682. <Platform Name="iOSDevice32">
  683. <Operation>1</Operation>
  684. <Extensions>.dylib</Extensions>
  685. </Platform>
  686. <Platform Name="iOSDevice64">
  687. <Operation>1</Operation>
  688. <Extensions>.dylib</Extensions>
  689. </Platform>
  690. <Platform Name="iOSSimulator">
  691. <Operation>1</Operation>
  692. <Extensions>.dylib</Extensions>
  693. </Platform>
  694. <Platform Name="OSX32">
  695. <RemoteDir>Contents\MacOS</RemoteDir>
  696. <Operation>1</Operation>
  697. <Extensions>.dylib</Extensions>
  698. </Platform>
  699. <Platform Name="OSX64">
  700. <RemoteDir>Contents\MacOS</RemoteDir>
  701. <Operation>1</Operation>
  702. <Extensions>.dylib</Extensions>
  703. </Platform>
  704. <Platform Name="Win32">
  705. <Operation>0</Operation>
  706. <Extensions>.dll;.bpl</Extensions>
  707. </Platform>
  708. </DeployClass>
  709. <DeployClass Required="true" Name="DependencyPackage">
  710. <Platform Name="iOSDevice32">
  711. <Operation>1</Operation>
  712. <Extensions>.dylib</Extensions>
  713. </Platform>
  714. <Platform Name="iOSDevice64">
  715. <Operation>1</Operation>
  716. <Extensions>.dylib</Extensions>
  717. </Platform>
  718. <Platform Name="iOSSimulator">
  719. <Operation>1</Operation>
  720. <Extensions>.dylib</Extensions>
  721. </Platform>
  722. <Platform Name="OSX32">
  723. <RemoteDir>Contents\MacOS</RemoteDir>
  724. <Operation>1</Operation>
  725. <Extensions>.dylib</Extensions>
  726. </Platform>
  727. <Platform Name="OSX64">
  728. <RemoteDir>Contents\MacOS</RemoteDir>
  729. <Operation>1</Operation>
  730. <Extensions>.dylib</Extensions>
  731. </Platform>
  732. <Platform Name="Win32">
  733. <Operation>0</Operation>
  734. <Extensions>.bpl</Extensions>
  735. </Platform>
  736. </DeployClass>
  737. <DeployClass Name="File">
  738. <Platform Name="Android">
  739. <Operation>0</Operation>
  740. </Platform>
  741. <Platform Name="Android64">
  742. <Operation>0</Operation>
  743. </Platform>
  744. <Platform Name="iOSDevice32">
  745. <Operation>0</Operation>
  746. </Platform>
  747. <Platform Name="iOSDevice64">
  748. <Operation>0</Operation>
  749. </Platform>
  750. <Platform Name="iOSSimulator">
  751. <Operation>0</Operation>
  752. </Platform>
  753. <Platform Name="OSX32">
  754. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  755. <Operation>0</Operation>
  756. </Platform>
  757. <Platform Name="OSX64">
  758. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  759. <Operation>0</Operation>
  760. </Platform>
  761. <Platform Name="Win32">
  762. <Operation>0</Operation>
  763. </Platform>
  764. </DeployClass>
  765. <DeployClass Name="iPad_Launch1024">
  766. <Platform Name="iOSDevice32">
  767. <Operation>1</Operation>
  768. </Platform>
  769. <Platform Name="iOSDevice64">
  770. <Operation>1</Operation>
  771. </Platform>
  772. <Platform Name="iOSSimulator">
  773. <Operation>1</Operation>
  774. </Platform>
  775. </DeployClass>
  776. <DeployClass Name="iPad_Launch1536">
  777. <Platform Name="iOSDevice32">
  778. <Operation>1</Operation>
  779. </Platform>
  780. <Platform Name="iOSDevice64">
  781. <Operation>1</Operation>
  782. </Platform>
  783. <Platform Name="iOSSimulator">
  784. <Operation>1</Operation>
  785. </Platform>
  786. </DeployClass>
  787. <DeployClass Name="iPad_Launch2048">
  788. <Platform Name="iOSDevice32">
  789. <Operation>1</Operation>
  790. </Platform>
  791. <Platform Name="iOSDevice64">
  792. <Operation>1</Operation>
  793. </Platform>
  794. <Platform Name="iOSSimulator">
  795. <Operation>1</Operation>
  796. </Platform>
  797. </DeployClass>
  798. <DeployClass Name="iPad_Launch2x">
  799. <Platform Name="iOSDevice64">
  800. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  801. <Operation>1</Operation>
  802. </Platform>
  803. <Platform Name="iOSSimulator">
  804. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  805. <Operation>1</Operation>
  806. </Platform>
  807. </DeployClass>
  808. <DeployClass Name="iPad_Launch768">
  809. <Platform Name="iOSDevice32">
  810. <Operation>1</Operation>
  811. </Platform>
  812. <Platform Name="iOSDevice64">
  813. <Operation>1</Operation>
  814. </Platform>
  815. <Platform Name="iOSSimulator">
  816. <Operation>1</Operation>
  817. </Platform>
  818. </DeployClass>
  819. <DeployClass Name="iPad_LaunchDark2x">
  820. <Platform Name="iOSDevice64">
  821. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  822. <Operation>1</Operation>
  823. </Platform>
  824. <Platform Name="iOSSimulator">
  825. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  826. <Operation>1</Operation>
  827. </Platform>
  828. </DeployClass>
  829. <DeployClass Name="iPhone_Launch2x">
  830. <Platform Name="iOSDevice64">
  831. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  832. <Operation>1</Operation>
  833. </Platform>
  834. <Platform Name="iOSSimulator">
  835. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  836. <Operation>1</Operation>
  837. </Platform>
  838. </DeployClass>
  839. <DeployClass Name="iPhone_Launch320">
  840. <Platform Name="iOSDevice32">
  841. <Operation>1</Operation>
  842. </Platform>
  843. <Platform Name="iOSDevice64">
  844. <Operation>1</Operation>
  845. </Platform>
  846. <Platform Name="iOSSimulator">
  847. <Operation>1</Operation>
  848. </Platform>
  849. </DeployClass>
  850. <DeployClass Name="iPhone_Launch3x">
  851. <Platform Name="iOSDevice64">
  852. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  853. <Operation>1</Operation>
  854. </Platform>
  855. <Platform Name="iOSSimulator">
  856. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  857. <Operation>1</Operation>
  858. </Platform>
  859. </DeployClass>
  860. <DeployClass Name="iPhone_Launch640">
  861. <Platform Name="iOSDevice32">
  862. <Operation>1</Operation>
  863. </Platform>
  864. <Platform Name="iOSDevice64">
  865. <Operation>1</Operation>
  866. </Platform>
  867. <Platform Name="iOSSimulator">
  868. <Operation>1</Operation>
  869. </Platform>
  870. </DeployClass>
  871. <DeployClass Name="iPhone_Launch640x1136">
  872. <Platform Name="iOSDevice32">
  873. <Operation>1</Operation>
  874. </Platform>
  875. <Platform Name="iOSDevice64">
  876. <Operation>1</Operation>
  877. </Platform>
  878. <Platform Name="iOSSimulator">
  879. <Operation>1</Operation>
  880. </Platform>
  881. </DeployClass>
  882. <DeployClass Name="iPhone_LaunchDark2x">
  883. <Platform Name="iOSDevice64">
  884. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  885. <Operation>1</Operation>
  886. </Platform>
  887. <Platform Name="iOSSimulator">
  888. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  889. <Operation>1</Operation>
  890. </Platform>
  891. </DeployClass>
  892. <DeployClass Name="iPhone_LaunchDark3x">
  893. <Platform Name="iOSDevice64">
  894. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  895. <Operation>1</Operation>
  896. </Platform>
  897. <Platform Name="iOSSimulator">
  898. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  899. <Operation>1</Operation>
  900. </Platform>
  901. </DeployClass>
  902. <DeployClass Name="ProjectAndroidManifest">
  903. <Platform Name="Android">
  904. <Operation>1</Operation>
  905. </Platform>
  906. <Platform Name="Android64">
  907. <Operation>1</Operation>
  908. </Platform>
  909. </DeployClass>
  910. <DeployClass Name="ProjectiOSDeviceDebug">
  911. <Platform Name="iOSDevice32">
  912. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  913. <Operation>1</Operation>
  914. </Platform>
  915. <Platform Name="iOSDevice64">
  916. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  917. <Operation>1</Operation>
  918. </Platform>
  919. </DeployClass>
  920. <DeployClass Name="ProjectiOSDeviceResourceRules">
  921. <Platform Name="iOSDevice32">
  922. <Operation>1</Operation>
  923. </Platform>
  924. <Platform Name="iOSDevice64">
  925. <Operation>1</Operation>
  926. </Platform>
  927. </DeployClass>
  928. <DeployClass Name="ProjectiOSEntitlements">
  929. <Platform Name="iOSDevice32">
  930. <RemoteDir>..\</RemoteDir>
  931. <Operation>1</Operation>
  932. </Platform>
  933. <Platform Name="iOSDevice64">
  934. <RemoteDir>..\</RemoteDir>
  935. <Operation>1</Operation>
  936. </Platform>
  937. </DeployClass>
  938. <DeployClass Name="ProjectiOSInfoPList">
  939. <Platform Name="iOSDevice32">
  940. <Operation>1</Operation>
  941. </Platform>
  942. <Platform Name="iOSDevice64">
  943. <Operation>1</Operation>
  944. </Platform>
  945. <Platform Name="iOSSimulator">
  946. <Operation>1</Operation>
  947. </Platform>
  948. </DeployClass>
  949. <DeployClass Name="ProjectiOSLaunchScreen">
  950. <Platform Name="iOSDevice64">
  951. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  952. <Operation>64</Operation>
  953. </Platform>
  954. <Platform Name="iOSSimulator">
  955. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  956. <Operation>64</Operation>
  957. </Platform>
  958. </DeployClass>
  959. <DeployClass Name="ProjectiOSResource">
  960. <Platform Name="iOSDevice32">
  961. <Operation>1</Operation>
  962. </Platform>
  963. <Platform Name="iOSDevice64">
  964. <Operation>1</Operation>
  965. </Platform>
  966. <Platform Name="iOSSimulator">
  967. <Operation>1</Operation>
  968. </Platform>
  969. </DeployClass>
  970. <DeployClass Name="ProjectOSXDebug">
  971. <Platform Name="OSX64">
  972. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  973. <Operation>1</Operation>
  974. </Platform>
  975. </DeployClass>
  976. <DeployClass Name="ProjectOSXEntitlements">
  977. <Platform Name="OSX32">
  978. <RemoteDir>..\</RemoteDir>
  979. <Operation>1</Operation>
  980. </Platform>
  981. <Platform Name="OSX64">
  982. <RemoteDir>..\</RemoteDir>
  983. <Operation>1</Operation>
  984. </Platform>
  985. </DeployClass>
  986. <DeployClass Name="ProjectOSXInfoPList">
  987. <Platform Name="OSX32">
  988. <RemoteDir>Contents</RemoteDir>
  989. <Operation>1</Operation>
  990. </Platform>
  991. <Platform Name="OSX64">
  992. <RemoteDir>Contents</RemoteDir>
  993. <Operation>1</Operation>
  994. </Platform>
  995. </DeployClass>
  996. <DeployClass Name="ProjectOSXResource">
  997. <Platform Name="OSX32">
  998. <RemoteDir>Contents\Resources</RemoteDir>
  999. <Operation>1</Operation>
  1000. </Platform>
  1001. <Platform Name="OSX64">
  1002. <RemoteDir>Contents\Resources</RemoteDir>
  1003. <Operation>1</Operation>
  1004. </Platform>
  1005. </DeployClass>
  1006. <DeployClass Required="true" Name="ProjectOutput">
  1007. <Platform Name="Android">
  1008. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  1009. <Operation>1</Operation>
  1010. </Platform>
  1011. <Platform Name="Android64">
  1012. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  1013. <Operation>1</Operation>
  1014. </Platform>
  1015. <Platform Name="iOSDevice32">
  1016. <Operation>1</Operation>
  1017. </Platform>
  1018. <Platform Name="iOSDevice64">
  1019. <Operation>1</Operation>
  1020. </Platform>
  1021. <Platform Name="iOSSimulator">
  1022. <Operation>1</Operation>
  1023. </Platform>
  1024. <Platform Name="Linux64">
  1025. <Operation>1</Operation>
  1026. </Platform>
  1027. <Platform Name="OSX32">
  1028. <RemoteDir>Contents\MacOS</RemoteDir>
  1029. <Operation>1</Operation>
  1030. </Platform>
  1031. <Platform Name="OSX64">
  1032. <RemoteDir>Contents\MacOS</RemoteDir>
  1033. <Operation>1</Operation>
  1034. </Platform>
  1035. <Platform Name="Win32">
  1036. <Operation>0</Operation>
  1037. </Platform>
  1038. </DeployClass>
  1039. <DeployClass Name="ProjectOutput_Android32">
  1040. <Platform Name="Android64">
  1041. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  1042. <Operation>1</Operation>
  1043. </Platform>
  1044. </DeployClass>
  1045. <DeployClass Name="ProjectUWPManifest">
  1046. <Platform Name="Win32">
  1047. <Operation>1</Operation>
  1048. </Platform>
  1049. <Platform Name="Win64">
  1050. <Operation>1</Operation>
  1051. </Platform>
  1052. </DeployClass>
  1053. <DeployClass Name="UWP_DelphiLogo150">
  1054. <Platform Name="Win32">
  1055. <RemoteDir>Assets</RemoteDir>
  1056. <Operation>1</Operation>
  1057. </Platform>
  1058. <Platform Name="Win64">
  1059. <RemoteDir>Assets</RemoteDir>
  1060. <Operation>1</Operation>
  1061. </Platform>
  1062. </DeployClass>
  1063. <DeployClass Name="UWP_DelphiLogo44">
  1064. <Platform Name="Win32">
  1065. <RemoteDir>Assets</RemoteDir>
  1066. <Operation>1</Operation>
  1067. </Platform>
  1068. <Platform Name="Win64">
  1069. <RemoteDir>Assets</RemoteDir>
  1070. <Operation>1</Operation>
  1071. </Platform>
  1072. </DeployClass>
  1073. <ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
  1074. <ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
  1075. <ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
  1076. <ProjectRoot Platform="Linux64" Name="$(PROJECTNAME)"/>
  1077. <ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
  1078. <ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
  1079. <ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
  1080. <ProjectRoot Platform="OSX64" Name="$(PROJECTNAME).app"/>
  1081. <ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
  1082. <ProjectRoot Platform="Android64" Name="$(PROJECTNAME)"/>
  1083. </Deployment>
  1084. <Platforms>
  1085. <Platform value="Android">True</Platform>
  1086. <Platform value="Android64">True</Platform>
  1087. <Platform value="Win32">True</Platform>
  1088. <Platform value="Win64">True</Platform>
  1089. </Platforms>
  1090. </BorlandProject>
  1091. <ProjectFileVersion>12</ProjectFileVersion>
  1092. </ProjectExtensions>
  1093. <Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
  1094. <Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
  1095. <Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
  1096. </Project>