BenchC.cbproj 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{A1659D39-7054-4893-9EA5-5698283820C4}</ProjectGuid>
  4. <ProjectVersion>20.1</ProjectVersion>
  5. <FrameworkType>VCL</FrameworkType>
  6. <AppType>Application</AppType>
  7. <MainSource>BenchC.cpp</MainSource>
  8. <Base>True</Base>
  9. <Config Condition="'$(Config)'==''">Debug</Config>
  10. <Platform Condition="'$(Platform)'==''">Win32</Platform>
  11. <CC_Suffix Condition="'$(CC_Suffix)'==''">c</CC_Suffix>
  12. <TargetedPlatforms>1</TargetedPlatforms>
  13. <ProjectName Condition="'$(ProjectName)'==''">BenchC</ProjectName>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
  16. <Base>true</Base>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
  19. <Base_Win32>true</Base_Win32>
  20. <CfgParent>Base</CfgParent>
  21. <Base>true</Base>
  22. </PropertyGroup>
  23. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
  24. <Base_Win64>true</Base_Win64>
  25. <CfgParent>Base</CfgParent>
  26. <Base>true</Base>
  27. </PropertyGroup>
  28. <PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Base)'=='true') or '$(Base_Win64x)'!=''">
  29. <Base_Win64x>true</Base_Win64x>
  30. <CfgParent>Base</CfgParent>
  31. <Base>true</Base>
  32. </PropertyGroup>
  33. <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
  34. <Cfg_1>true</Cfg_1>
  35. <CfgParent>Base</CfgParent>
  36. <Base>true</Base>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
  39. <Cfg_1_Win32>true</Cfg_1_Win32>
  40. <CfgParent>Cfg_1</CfgParent>
  41. <Cfg_1>true</Cfg_1>
  42. <Base>true</Base>
  43. </PropertyGroup>
  44. <PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64x)'!=''">
  45. <Cfg_1_Win64x>true</Cfg_1_Win64x>
  46. <CfgParent>Cfg_1</CfgParent>
  47. <Cfg_1>true</Cfg_1>
  48. <Base>true</Base>
  49. </PropertyGroup>
  50. <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
  51. <Cfg_2>true</Cfg_2>
  52. <CfgParent>Base</CfgParent>
  53. <Base>true</Base>
  54. </PropertyGroup>
  55. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
  56. <Cfg_2_Win32>true</Cfg_2_Win32>
  57. <CfgParent>Cfg_2</CfgParent>
  58. <Cfg_2>true</Cfg_2>
  59. <Base>true</Base>
  60. </PropertyGroup>
  61. <PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64x)'!=''">
  62. <Cfg_2_Win64x>true</Cfg_2_Win64x>
  63. <CfgParent>Cfg_2</CfgParent>
  64. <Cfg_2>true</Cfg_2>
  65. <Base>true</Base>
  66. </PropertyGroup>
  67. <PropertyGroup Condition="'$(Base)'!=''">
  68. <DCC_CBuilderOutput>JPHNE</DCC_CBuilderOutput>
  69. <DynamicRTL>true</DynamicRTL>
  70. <UsePackages>true</UsePackages>
  71. <BCC_wpar>false</BCC_wpar>
  72. <BCC_OptimizeForSpeed>true</BCC_OptimizeForSpeed>
  73. <BCC_ExtendedErrorInfo>true</BCC_ExtendedErrorInfo>
  74. <ILINK_TranslatedLibraryPath>$(BDSLIB)\$(PLATFORM)\release\$(LANGDIR);$(ILINK_TranslatedLibraryPath)</ILINK_TranslatedLibraryPath>
  75. <ProjectType>CppVCLApplication</ProjectType>
  76. <DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace)</DCC_Namespace>
  77. <AllPackageLibs>rtl.lib;vcl.lib;GLScene_RT.lib;xmlrtl.lib;vclimg.lib</AllPackageLibs>
  78. <_TCHARMapping>wchar_t</_TCHARMapping>
  79. <Multithreaded>true</Multithreaded>
  80. <Icon_MainIcon>$(BDS)\bin\cbuilder_PROJECTICON.ico</Icon_MainIcon>
  81. <UWP_CppLogo44>$(BDS)\bin\Artwork\Windows\UWP\cppreg_UwpDefault_44.png</UWP_CppLogo44>
  82. <UWP_CppLogo150>$(BDS)\bin\Artwork\Windows\UWP\cppreg_UwpDefault_150.png</UWP_CppLogo150>
  83. <IncludePath>whirlwind\;volcano\;smoking\;megaglasscube\;megacube\;canvas\;D:\GLScene\Examples\Demos\bench\;$(IncludePath)</IncludePath>
  84. <ILINK_LibraryPath>whirlwind\;volcano\;smoking\;megaglasscube\;megacube\;canvas\;D:\GLScene\Examples\Demos\bench\;$(ILINK_LibraryPath)</ILINK_LibraryPath>
  85. <SanitizedProjectName>BenchC</SanitizedProjectName>
  86. </PropertyGroup>
  87. <PropertyGroup Condition="'$(Base_Win32)'!=''">
  88. <PackageImports>adortl;appanalytics;bcbie;bcbsmp;bdertl;bindcomp;bindcompdbx;bindcompfmx;bindcompvcl;bindcompvclsmp;bindcompvclwinx;bindengine;CloudService;CustomIPTransport;DataSnapClient;DataSnapCommon;DataSnapConnectors;DatasnapConnectorsFreePascal;DataSnapFireDAC;DataSnapIndy10ServerTransport;DataSnapNativeClient;DataSnapProviderClient;DataSnapServer;DataSnapServerMidas;dbexpress;dbrtl;dbxcds;DbxClientDriver;DbxCommonDriver;DBXDb2Driver;DBXFirebirdDriver;DBXInformixDriver;DBXInterBaseDriver;DBXMSSQLDriver;DBXMySQLDriver;DBXOdbcDriver;DBXOracleDriver;DBXSqliteDriver;DBXSybaseASADriver;DBXSybaseASEDriver;dsnap;dsnapcon;dsnapxml;emsclient;emsclientfiredac;emsedge;emshosting;emsserverresource;FireDAC;FireDACADSDriver;FireDACASADriver;FireDACCommon;FireDACCommonDriver;FireDACCommonODBC;FireDACDb2Driver;FireDACDBXDriver;FireDACDSDriver;FireDACIBDriver;FireDACInfxDriver;FireDACMongoDBDriver;FireDACMSAccDriver;FireDACMSSQLDriver;FireDACMySQLDriver;FireDACODBCDriver;FireDACOracleDriver;FireDACPgDriver;FireDACSqliteDriver;FireDACTDataDriver;fmx;fmxase;FMXComponentEd;FMXComponents;fmxdae;fmxFireDAC;fmxobj;FMXTee;FmxTeeUI;GBE3D;GLScene_Cg_RT;GLScene_GPU_RT;GLScene_Physics_RT;GLScene_RT;GLScene_Sounds_RT;GR32_DT;GR32_RT;IndyCore;IndyIPClient;IndyIPCommon;IndyIPServer;IndyProtocols;IndySystem;inet;inetdb;inetdbxpress;RESTBackendComponents;RESTComponents;rtl;soapmidas;soaprtl;soapserver;Tee;TeeDB;TeeUI;tethering;vcl;vclactnband;vcldb;vcldbx;vcldsnap;vcledge;vclFireDAC;vclie;vclimg;VCLRESTComponents;VclSmp;vcltouch;vclwinx;vclx;xmlrtl;$(PackageImports)</PackageImports>
  89. <IncludePath>$(BDSINCLUDE)\windows\vcl;$(IncludePath)</IncludePath>
  90. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
  91. <BT_BuildType>Debug</BT_BuildType>
  92. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  93. <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>
  94. <VerInfo_Locale>1033</VerInfo_Locale>
  95. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  96. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  97. </PropertyGroup>
  98. <PropertyGroup Condition="'$(Base_Win64)'!=''">
  99. <PackageImports>adortl;appanalytics;bcbie;bcbsmp;bindcomp;bindcompdbx;bindcompfmx;bindcompvcl;bindcompvclsmp;bindcompvclwinx;bindengine;CloudService;CustomIPTransport;DataSnapClient;DataSnapCommon;DataSnapConnectors;DatasnapConnectorsFreePascal;DataSnapFireDAC;DataSnapIndy10ServerTransport;DataSnapNativeClient;DataSnapProviderClient;DataSnapServer;DataSnapServerMidas;dbexpress;dbrtl;dbxcds;DbxClientDriver;DbxCommonDriver;DBXDb2Driver;DBXFirebirdDriver;DBXInformixDriver;DBXInterBaseDriver;DBXMSSQLDriver;DBXMySQLDriver;DBXOdbcDriver;DBXOracleDriver;DBXSqliteDriver;DBXSybaseASADriver;DBXSybaseASEDriver;dsnap;dsnapcon;dsnapxml;emsclient;emsclientfiredac;emsedge;emshosting;emsserverresource;FireDAC;FireDACADSDriver;FireDACASADriver;FireDACCommon;FireDACCommonDriver;FireDACCommonODBC;FireDACDb2Driver;FireDACDBXDriver;FireDACDSDriver;FireDACIBDriver;FireDACInfxDriver;FireDACMongoDBDriver;FireDACMSAccDriver;FireDACMSSQLDriver;FireDACMySQLDriver;FireDACODBCDriver;FireDACOracleDriver;FireDACPgDriver;FireDACSqliteDriver;FireDACTDataDriver;fmx;fmxase;fmxdae;fmxFireDAC;fmxobj;FMXTee;FmxTeeUI;GBE3D;GLScene_RT;GR32_RT;IndyCore;IndyIPClient;IndyIPCommon;IndyIPServer;IndyProtocols;IndySystem;inet;inetdb;inetdbxpress;RESTBackendComponents;RESTComponents;rtl;soapmidas;soaprtl;soapserver;Tee;TeeDB;TeeUI;tethering;vcl;vclactnband;vcldb;vcldsnap;vcledge;vclFireDAC;vclie;vclimg;VCLRESTComponents;VclSmp;vcltouch;vclwinx;vclx;xmlrtl;$(PackageImports)</PackageImports>
  100. <IncludePath>$(BDSINCLUDE)\windows\vcl;$(IncludePath)</IncludePath>
  101. </PropertyGroup>
  102. <PropertyGroup Condition="'$(Base_Win64x)'!=''">
  103. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
  104. <BT_BuildType>Debug</BT_BuildType>
  105. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  106. <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>
  107. <VerInfo_Locale>1033</VerInfo_Locale>
  108. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  109. </PropertyGroup>
  110. <PropertyGroup Condition="'$(Cfg_1)'!=''">
  111. <BCC_OptimizeForSpeed>false</BCC_OptimizeForSpeed>
  112. <BCC_DisableOptimizations>true</BCC_DisableOptimizations>
  113. <DCC_Optimize>false</DCC_Optimize>
  114. <DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
  115. <Defines>_DEBUG;$(Defines)</Defines>
  116. <BCC_InlineFunctionExpansion>false</BCC_InlineFunctionExpansion>
  117. <BCC_UseRegisterVariables>None</BCC_UseRegisterVariables>
  118. <DCC_Define>DEBUG</DCC_Define>
  119. <BCC_DebugLineNumbers>true</BCC_DebugLineNumbers>
  120. <TASM_DisplaySourceLines>true</TASM_DisplaySourceLines>
  121. <BCC_StackFrames>true</BCC_StackFrames>
  122. <ILINK_FullDebugInfo>true</ILINK_FullDebugInfo>
  123. <TASM_Debugging>Full</TASM_Debugging>
  124. <BCC_SourceDebuggingOn>true</BCC_SourceDebuggingOn>
  125. <BCC_EnableCPPExceptions>true</BCC_EnableCPPExceptions>
  126. <BCC_DisableFramePtrElimOpt>true</BCC_DisableFramePtrElimOpt>
  127. <BCC_DisableSpellChecking>true</BCC_DisableSpellChecking>
  128. <CLANG_UnwindTables>true</CLANG_UnwindTables>
  129. <ILINK_LibraryPath>$(BDSLIB)\$(PLATFORM)\debug;$(ILINK_LibraryPath)</ILINK_LibraryPath>
  130. <ILINK_TranslatedLibraryPath>$(BDSLIB)\$(PLATFORM)\debug\$(LANGDIR);$(ILINK_TranslatedLibraryPath)</ILINK_TranslatedLibraryPath>
  131. </PropertyGroup>
  132. <PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
  133. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  134. <AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
  135. <BCC_UseClassicCompiler>false</BCC_UseClassicCompiler>
  136. <ILINK_LibraryPath>$(BDSLIB)\$(PLATFORM)$(CC_SUFFIX)\debug;$(ILINK_LibraryPath)</ILINK_LibraryPath>
  137. <LinkPackageImports>rtl.bpi;vcl.bpi;GLScene_RT.bpi;xmlrtl.bpi;vclimg.bpi</LinkPackageImports>
  138. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  139. <VerInfo_Locale>1033</VerInfo_Locale>
  140. </PropertyGroup>
  141. <PropertyGroup Condition="'$(Cfg_1_Win64x)'!=''">
  142. <AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
  143. </PropertyGroup>
  144. <PropertyGroup Condition="'$(Cfg_2)'!=''">
  145. <Defines>NDEBUG;$(Defines)</Defines>
  146. <TASM_Debugging>None</TASM_Debugging>
  147. </PropertyGroup>
  148. <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
  149. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  150. <AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
  151. <BCC_UseClassicCompiler>false</BCC_UseClassicCompiler>
  152. </PropertyGroup>
  153. <PropertyGroup Condition="'$(Cfg_2_Win64x)'!=''">
  154. <AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
  155. </PropertyGroup>
  156. <ItemGroup>
  157. <CppCompile Include="BenchC.cpp">
  158. <BuildOrder>0</BuildOrder>
  159. </CppCompile>
  160. <CppCompile Include="canvas\fCanvasC.cpp">
  161. <Form>FormCanvas</Form>
  162. <FormType>dfm</FormType>
  163. <DependentOn>canvas\fCanvasC.h</DependentOn>
  164. <BuildOrder>7</BuildOrder>
  165. </CppCompile>
  166. <CppCompile Include="fcBench.cpp">
  167. <Form>FirmBench</Form>
  168. <FormType>dfm</FormType>
  169. <DependentOn>fcBench.h</DependentOn>
  170. <BuildOrder>2</BuildOrder>
  171. </CppCompile>
  172. <CppCompile Include="megacube\fMegaCubeC.cpp">
  173. <Form>Form1</Form>
  174. <FormType>dfm</FormType>
  175. <DependentOn>megacube\fMegaCubeC.h</DependentOn>
  176. <BuildOrder>3</BuildOrder>
  177. </CppCompile>
  178. <CppCompile Include="megaglasscube\fMegaglassC.cpp">
  179. <Form>FormMegaglasscube</Form>
  180. <FormType>dfm</FormType>
  181. <DependentOn>megaglasscube\fMegaglassC.h</DependentOn>
  182. <BuildOrder>4</BuildOrder>
  183. </CppCompile>
  184. <CppCompile Include="smoking\fSmokingC.cpp">
  185. <Form>FormSmoking</Form>
  186. <FormType>dfm</FormType>
  187. <DependentOn>smoking\fSmokingC.h</DependentOn>
  188. <BuildOrder>5</BuildOrder>
  189. </CppCompile>
  190. <CppCompile Include="volcano\fVolcanoC.cpp">
  191. <Form>FormVolcano</Form>
  192. <FormType>dfm</FormType>
  193. <DependentOn>volcano\fVolcanoC.h</DependentOn>
  194. <BuildOrder>6</BuildOrder>
  195. </CppCompile>
  196. <CppCompile Include="whirlwind\fWhirlC.cpp">
  197. <Form>FormWhirl</Form>
  198. <FormType>dfm</FormType>
  199. <DependentOn>whirlwind\fWhirlC.h</DependentOn>
  200. <BuildOrder>7</BuildOrder>
  201. </CppCompile>
  202. <FormResources Include="megaglasscube\fMegaglassC.dfm"/>
  203. <FormResources Include="smoking\fSmokingC.dfm"/>
  204. <FormResources Include="volcano\fVolcanoC.dfm"/>
  205. <FormResources Include="whirlwind\fWhirlC.dfm"/>
  206. <FormResources Include="canvas\fCanvasC.dfm"/>
  207. <FormResources Include="fcBench.dfm"/>
  208. <FormResources Include="megacube\fMegaCubeC.dfm"/>
  209. <BuildConfiguration Include="Base">
  210. <Key>Base</Key>
  211. </BuildConfiguration>
  212. <BuildConfiguration Include="Debug">
  213. <Key>Cfg_1</Key>
  214. <CfgParent>Base</CfgParent>
  215. </BuildConfiguration>
  216. <BuildConfiguration Include="Release">
  217. <Key>Cfg_2</Key>
  218. <CfgParent>Base</CfgParent>
  219. </BuildConfiguration>
  220. </ItemGroup>
  221. <ProjectExtensions>
  222. <Borland.Personality>CPlusPlusBuilder.Personality.12</Borland.Personality>
  223. <Borland.ProjectType>CppVCLApplication</Borland.ProjectType>
  224. <BorlandProject>
  225. <CPlusPlusBuilder.Personality>
  226. <ProjectProperties>
  227. <ProjectProperties Name="AutoShowDeps">False</ProjectProperties>
  228. <ProjectProperties Name="ManagePaths">True</ProjectProperties>
  229. <ProjectProperties Name="VerifyPackages">True</ProjectProperties>
  230. <ProjectProperties Name="IndexFiles">False</ProjectProperties>
  231. </ProjectProperties>
  232. <Source>
  233. <Source Name="MainSource">BenchC.cpp</Source>
  234. </Source>
  235. <Excluded_Packages>
  236. <Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\22.0\Bpl\GBComps.bpl">Geoblock - Components</Excluded_Packages>
  237. <Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\22.0\Bpl\GEdgeIO.bpl">File C:\Users\Public\Documents\Embarcadero\Studio\22.0\Bpl\GEdgeIO.bpl not found</Excluded_Packages>
  238. <Excluded_Packages Name="C:\Users\Public\Documents\Embarcadero\Studio\22.0\Bpl\GEdgeIODB.bpl">File C:\Users\Public\Documents\Embarcadero\Studio\22.0\Bpl\GEdgeIODB.bpl not found</Excluded_Packages>
  239. <Excluded_Packages Name="$(BDSBIN)\bcboffice2k280.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
  240. <Excluded_Packages Name="$(BDSBIN)\bcbofficexp280.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
  241. <Excluded_Packages Name="$(BDSBIN)\dcloffice2k280.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
  242. <Excluded_Packages Name="$(BDSBIN)\dclofficexp280.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
  243. </Excluded_Packages>
  244. </CPlusPlusBuilder.Personality>
  245. <Deployment Version="4">
  246. <DeployFile Condition="'$(DynamicRTL)'=='true'" LocalName="$(BDS)\Redist\osx32\libcgcrtl.dylib" Class="DependencyModule">
  247. <Platform Name="OSX32">
  248. <Overwrite>true</Overwrite>
  249. </Platform>
  250. </DeployFile>
  251. <DeployFile Condition="'$(DynamicRTL)'=='true'" LocalName="$(BDS)\Redist\osx32\libcgstl.dylib" Class="DependencyModule">
  252. <Platform Name="OSX32">
  253. <Overwrite>true</Overwrite>
  254. </Platform>
  255. </DeployFile>
  256. <DeployFile Condition="'$(UsingDelphiRTL)'=='true'" LocalName="$(BDS)\bin64\borlndmm.dll" Class="DependencyModule">
  257. <Platform Name="Win64">
  258. <Overwrite>true</Overwrite>
  259. </Platform>
  260. </DeployFile>
  261. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'!='true'" LocalName="$(BDS)\bin64\cc64280.dll" Class="DependencyModule"/>
  262. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'=='true'" LocalName="$(BDS)\bin64\cc64280mt.dll" Class="DependencyModule"/>
  263. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'!='true'" LocalName="$(BDS)\bin64\cc64290.dll" Class="DependencyModule">
  264. <Platform Name="Win64">
  265. <Overwrite>true</Overwrite>
  266. </Platform>
  267. </DeployFile>
  268. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'=='true'" LocalName="$(BDS)\bin64\cc64290mt.dll" Class="DependencyModule">
  269. <Platform Name="Win64">
  270. <Overwrite>true</Overwrite>
  271. </Platform>
  272. </DeployFile>
  273. <DeployFile Condition="'$(UsingDelphiRTL)'=='true'" LocalName="$(BDS)\bin\borlndmm.dll" Class="DependencyModule">
  274. <Platform Name="Win32">
  275. <Overwrite>true</Overwrite>
  276. </Platform>
  277. </DeployFile>
  278. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'!='true'" LocalName="$(BDS)\bin\cc32280.dll" Class="DependencyModule"/>
  279. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'=='true'" LocalName="$(BDS)\bin\cc32280mt.dll" Class="DependencyModule"/>
  280. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'!='true'" LocalName="$(BDS)\bin\cc32290.dll" Class="DependencyModule">
  281. <Platform Name="Win32">
  282. <Overwrite>true</Overwrite>
  283. </Platform>
  284. </DeployFile>
  285. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'=='true'" LocalName="$(BDS)\bin\cc32290mt.dll" Class="DependencyModule">
  286. <Platform Name="Win32">
  287. <Overwrite>true</Overwrite>
  288. </Platform>
  289. </DeployFile>
  290. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'!='true'" LocalName="$(BDS)\bin\cc32c280.dll" Class="DependencyModule"/>
  291. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'=='true'" LocalName="$(BDS)\bin\cc32c280mt.dll" Class="DependencyModule"/>
  292. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'!='true'" LocalName="$(BDS)\bin\cc32c290.dll" Class="DependencyModule">
  293. <Platform Name="Win32">
  294. <Overwrite>true</Overwrite>
  295. </Platform>
  296. </DeployFile>
  297. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'=='true'" LocalName="$(BDS)\bin\cc32c290mt.dll" Class="DependencyModule">
  298. <Platform Name="Win32">
  299. <Overwrite>true</Overwrite>
  300. </Platform>
  301. </DeployFile>
  302. <DeployFile LocalName="BenchC.exe" Configuration="Debug" Class="ProjectOutput"/>
  303. <DeployFile LocalName="BenchC.exe" Configuration="Debug" Class="ProjectOutput">
  304. <Platform Name="Win32">
  305. <RemoteName>BenchC.exe</RemoteName>
  306. <Overwrite>true</Overwrite>
  307. </Platform>
  308. </DeployFile>
  309. <DeployFile LocalName="BenchC.tds" Configuration="Debug" Class="DebugSymbols"/>
  310. <DeployFile LocalName="BenchC.tds" Configuration="Debug" Class="DebugSymbols">
  311. <Platform Name="Win32">
  312. <RemoteName>BenchC.tds</RemoteName>
  313. <Overwrite>true</Overwrite>
  314. </Platform>
  315. </DeployFile>
  316. <DeployClass Name="AdditionalDebugSymbols">
  317. <Platform Name="iOSSimulator">
  318. <Operation>1</Operation>
  319. </Platform>
  320. <Platform Name="OSX32">
  321. <RemoteDir>Contents\MacOS</RemoteDir>
  322. <Operation>1</Operation>
  323. </Platform>
  324. <Platform Name="Win32">
  325. <Operation>0</Operation>
  326. </Platform>
  327. </DeployClass>
  328. <DeployClass Name="AndroidClasses">
  329. <Platform Name="Android">
  330. <RemoteDir>classes</RemoteDir>
  331. <Operation>64</Operation>
  332. </Platform>
  333. <Platform Name="Android64">
  334. <RemoteDir>classes</RemoteDir>
  335. <Operation>64</Operation>
  336. </Platform>
  337. </DeployClass>
  338. <DeployClass Name="AndroidFileProvider">
  339. <Platform Name="Android">
  340. <RemoteDir>res\xml</RemoteDir>
  341. <Operation>1</Operation>
  342. </Platform>
  343. <Platform Name="Android64">
  344. <RemoteDir>res\xml</RemoteDir>
  345. <Operation>1</Operation>
  346. </Platform>
  347. </DeployClass>
  348. <DeployClass Name="AndroidLibnativeArmeabiFile">
  349. <Platform Name="Android">
  350. <RemoteDir>library\lib\armeabi</RemoteDir>
  351. <Operation>1</Operation>
  352. </Platform>
  353. <Platform Name="Android64">
  354. <RemoteDir>library\lib\armeabi</RemoteDir>
  355. <Operation>1</Operation>
  356. </Platform>
  357. </DeployClass>
  358. <DeployClass Name="AndroidLibnativeArmeabiv7aFile">
  359. <Platform Name="Android64">
  360. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  361. <Operation>1</Operation>
  362. </Platform>
  363. </DeployClass>
  364. <DeployClass Name="AndroidLibnativeMipsFile">
  365. <Platform Name="Android">
  366. <RemoteDir>library\lib\mips</RemoteDir>
  367. <Operation>1</Operation>
  368. </Platform>
  369. <Platform Name="Android64">
  370. <RemoteDir>library\lib\mips</RemoteDir>
  371. <Operation>1</Operation>
  372. </Platform>
  373. </DeployClass>
  374. <DeployClass Name="AndroidServiceOutput">
  375. <Platform Name="Android">
  376. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  377. <Operation>1</Operation>
  378. </Platform>
  379. <Platform Name="Android64">
  380. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  381. <Operation>1</Operation>
  382. </Platform>
  383. </DeployClass>
  384. <DeployClass Name="AndroidServiceOutput_Android32">
  385. <Platform Name="Android64">
  386. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  387. <Operation>1</Operation>
  388. </Platform>
  389. </DeployClass>
  390. <DeployClass Name="AndroidSplashImageDef">
  391. <Platform Name="Android">
  392. <RemoteDir>res\drawable</RemoteDir>
  393. <Operation>1</Operation>
  394. </Platform>
  395. <Platform Name="Android64">
  396. <RemoteDir>res\drawable</RemoteDir>
  397. <Operation>1</Operation>
  398. </Platform>
  399. </DeployClass>
  400. <DeployClass Name="AndroidSplashImageDefV21">
  401. <Platform Name="Android">
  402. <RemoteDir>res\drawable-anydpi-v21</RemoteDir>
  403. <Operation>1</Operation>
  404. </Platform>
  405. <Platform Name="Android64">
  406. <RemoteDir>res\drawable-anydpi-v21</RemoteDir>
  407. <Operation>1</Operation>
  408. </Platform>
  409. </DeployClass>
  410. <DeployClass Name="AndroidSplashStyles">
  411. <Platform Name="Android">
  412. <RemoteDir>res\values</RemoteDir>
  413. <Operation>1</Operation>
  414. </Platform>
  415. <Platform Name="Android64">
  416. <RemoteDir>res\values</RemoteDir>
  417. <Operation>1</Operation>
  418. </Platform>
  419. </DeployClass>
  420. <DeployClass Name="AndroidSplashStylesV21">
  421. <Platform Name="Android">
  422. <RemoteDir>res\values-v21</RemoteDir>
  423. <Operation>1</Operation>
  424. </Platform>
  425. <Platform Name="Android64">
  426. <RemoteDir>res\values-v21</RemoteDir>
  427. <Operation>1</Operation>
  428. </Platform>
  429. </DeployClass>
  430. <DeployClass Name="AndroidSplashStylesV31">
  431. <Platform Name="Android">
  432. <RemoteDir>res\values-v31</RemoteDir>
  433. <Operation>1</Operation>
  434. </Platform>
  435. <Platform Name="Android64">
  436. <RemoteDir>res\values-v31</RemoteDir>
  437. <Operation>1</Operation>
  438. </Platform>
  439. </DeployClass>
  440. <DeployClass Name="Android_AdaptiveIcon">
  441. <Platform Name="Android">
  442. <RemoteDir>res\drawable-anydpi-v26</RemoteDir>
  443. <Operation>1</Operation>
  444. </Platform>
  445. <Platform Name="Android64">
  446. <RemoteDir>res\drawable-anydpi-v26</RemoteDir>
  447. <Operation>1</Operation>
  448. </Platform>
  449. </DeployClass>
  450. <DeployClass Name="Android_AdaptiveIconBackground">
  451. <Platform Name="Android">
  452. <RemoteDir>res\drawable</RemoteDir>
  453. <Operation>1</Operation>
  454. </Platform>
  455. <Platform Name="Android64">
  456. <RemoteDir>res\drawable</RemoteDir>
  457. <Operation>1</Operation>
  458. </Platform>
  459. </DeployClass>
  460. <DeployClass Name="Android_AdaptiveIconForeground">
  461. <Platform Name="Android">
  462. <RemoteDir>res\drawable</RemoteDir>
  463. <Operation>1</Operation>
  464. </Platform>
  465. <Platform Name="Android64">
  466. <RemoteDir>res\drawable</RemoteDir>
  467. <Operation>1</Operation>
  468. </Platform>
  469. </DeployClass>
  470. <DeployClass Name="Android_AdaptiveIconMonochrome">
  471. <Platform Name="Android">
  472. <RemoteDir>res\drawable</RemoteDir>
  473. <Operation>1</Operation>
  474. </Platform>
  475. <Platform Name="Android64">
  476. <RemoteDir>res\drawable</RemoteDir>
  477. <Operation>1</Operation>
  478. </Platform>
  479. </DeployClass>
  480. <DeployClass Name="Android_AdaptiveIconV33">
  481. <Platform Name="Android">
  482. <RemoteDir>res\drawable-anydpi-v33</RemoteDir>
  483. <Operation>1</Operation>
  484. </Platform>
  485. <Platform Name="Android64">
  486. <RemoteDir>res\drawable-anydpi-v33</RemoteDir>
  487. <Operation>1</Operation>
  488. </Platform>
  489. </DeployClass>
  490. <DeployClass Name="Android_Colors">
  491. <Platform Name="Android">
  492. <RemoteDir>res\values</RemoteDir>
  493. <Operation>1</Operation>
  494. </Platform>
  495. <Platform Name="Android64">
  496. <RemoteDir>res\values</RemoteDir>
  497. <Operation>1</Operation>
  498. </Platform>
  499. </DeployClass>
  500. <DeployClass Name="Android_ColorsDark">
  501. <Platform Name="Android">
  502. <RemoteDir>res\values-night-v21</RemoteDir>
  503. <Operation>1</Operation>
  504. </Platform>
  505. <Platform Name="Android64">
  506. <RemoteDir>res\values-night-v21</RemoteDir>
  507. <Operation>1</Operation>
  508. </Platform>
  509. </DeployClass>
  510. <DeployClass Name="Android_DefaultAppIcon">
  511. <Platform Name="Android">
  512. <RemoteDir>res\drawable</RemoteDir>
  513. <Operation>1</Operation>
  514. </Platform>
  515. <Platform Name="Android64">
  516. <RemoteDir>res\drawable</RemoteDir>
  517. <Operation>1</Operation>
  518. </Platform>
  519. </DeployClass>
  520. <DeployClass Name="Android_LauncherIcon144">
  521. <Platform Name="Android">
  522. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  523. <Operation>1</Operation>
  524. </Platform>
  525. <Platform Name="Android64">
  526. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  527. <Operation>1</Operation>
  528. </Platform>
  529. </DeployClass>
  530. <DeployClass Name="Android_LauncherIcon192">
  531. <Platform Name="Android">
  532. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  533. <Operation>1</Operation>
  534. </Platform>
  535. <Platform Name="Android64">
  536. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  537. <Operation>1</Operation>
  538. </Platform>
  539. </DeployClass>
  540. <DeployClass Name="Android_LauncherIcon36">
  541. <Platform Name="Android">
  542. <RemoteDir>res\drawable-ldpi</RemoteDir>
  543. <Operation>1</Operation>
  544. </Platform>
  545. <Platform Name="Android64">
  546. <RemoteDir>res\drawable-ldpi</RemoteDir>
  547. <Operation>1</Operation>
  548. </Platform>
  549. </DeployClass>
  550. <DeployClass Name="Android_LauncherIcon48">
  551. <Platform Name="Android">
  552. <RemoteDir>res\drawable-mdpi</RemoteDir>
  553. <Operation>1</Operation>
  554. </Platform>
  555. <Platform Name="Android64">
  556. <RemoteDir>res\drawable-mdpi</RemoteDir>
  557. <Operation>1</Operation>
  558. </Platform>
  559. </DeployClass>
  560. <DeployClass Name="Android_LauncherIcon72">
  561. <Platform Name="Android">
  562. <RemoteDir>res\drawable-hdpi</RemoteDir>
  563. <Operation>1</Operation>
  564. </Platform>
  565. <Platform Name="Android64">
  566. <RemoteDir>res\drawable-hdpi</RemoteDir>
  567. <Operation>1</Operation>
  568. </Platform>
  569. </DeployClass>
  570. <DeployClass Name="Android_LauncherIcon96">
  571. <Platform Name="Android">
  572. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  573. <Operation>1</Operation>
  574. </Platform>
  575. <Platform Name="Android64">
  576. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  577. <Operation>1</Operation>
  578. </Platform>
  579. </DeployClass>
  580. <DeployClass Name="Android_NotificationIcon24">
  581. <Platform Name="Android">
  582. <RemoteDir>res\drawable-mdpi</RemoteDir>
  583. <Operation>1</Operation>
  584. </Platform>
  585. <Platform Name="Android64">
  586. <RemoteDir>res\drawable-mdpi</RemoteDir>
  587. <Operation>1</Operation>
  588. </Platform>
  589. </DeployClass>
  590. <DeployClass Name="Android_NotificationIcon36">
  591. <Platform Name="Android">
  592. <RemoteDir>res\drawable-hdpi</RemoteDir>
  593. <Operation>1</Operation>
  594. </Platform>
  595. <Platform Name="Android64">
  596. <RemoteDir>res\drawable-hdpi</RemoteDir>
  597. <Operation>1</Operation>
  598. </Platform>
  599. </DeployClass>
  600. <DeployClass Name="Android_NotificationIcon48">
  601. <Platform Name="Android">
  602. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  603. <Operation>1</Operation>
  604. </Platform>
  605. <Platform Name="Android64">
  606. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  607. <Operation>1</Operation>
  608. </Platform>
  609. </DeployClass>
  610. <DeployClass Name="Android_NotificationIcon72">
  611. <Platform Name="Android">
  612. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  613. <Operation>1</Operation>
  614. </Platform>
  615. <Platform Name="Android64">
  616. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  617. <Operation>1</Operation>
  618. </Platform>
  619. </DeployClass>
  620. <DeployClass Name="Android_NotificationIcon96">
  621. <Platform Name="Android">
  622. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  623. <Operation>1</Operation>
  624. </Platform>
  625. <Platform Name="Android64">
  626. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  627. <Operation>1</Operation>
  628. </Platform>
  629. </DeployClass>
  630. <DeployClass Name="Android_SplashImage426">
  631. <Platform Name="Android">
  632. <RemoteDir>res\drawable-small</RemoteDir>
  633. <Operation>1</Operation>
  634. </Platform>
  635. <Platform Name="Android64">
  636. <RemoteDir>res\drawable-small</RemoteDir>
  637. <Operation>1</Operation>
  638. </Platform>
  639. </DeployClass>
  640. <DeployClass Name="Android_SplashImage470">
  641. <Platform Name="Android">
  642. <RemoteDir>res\drawable-normal</RemoteDir>
  643. <Operation>1</Operation>
  644. </Platform>
  645. <Platform Name="Android64">
  646. <RemoteDir>res\drawable-normal</RemoteDir>
  647. <Operation>1</Operation>
  648. </Platform>
  649. </DeployClass>
  650. <DeployClass Name="Android_SplashImage640">
  651. <Platform Name="Android">
  652. <RemoteDir>res\drawable-large</RemoteDir>
  653. <Operation>1</Operation>
  654. </Platform>
  655. <Platform Name="Android64">
  656. <RemoteDir>res\drawable-large</RemoteDir>
  657. <Operation>1</Operation>
  658. </Platform>
  659. </DeployClass>
  660. <DeployClass Name="Android_SplashImage960">
  661. <Platform Name="Android">
  662. <RemoteDir>res\drawable-xlarge</RemoteDir>
  663. <Operation>1</Operation>
  664. </Platform>
  665. <Platform Name="Android64">
  666. <RemoteDir>res\drawable-xlarge</RemoteDir>
  667. <Operation>1</Operation>
  668. </Platform>
  669. </DeployClass>
  670. <DeployClass Name="Android_Strings">
  671. <Platform Name="Android">
  672. <RemoteDir>res\values</RemoteDir>
  673. <Operation>1</Operation>
  674. </Platform>
  675. <Platform Name="Android64">
  676. <RemoteDir>res\values</RemoteDir>
  677. <Operation>1</Operation>
  678. </Platform>
  679. </DeployClass>
  680. <DeployClass Name="Android_VectorizedNotificationIcon">
  681. <Platform Name="Android">
  682. <RemoteDir>res\drawable-anydpi-v24</RemoteDir>
  683. <Operation>1</Operation>
  684. </Platform>
  685. <Platform Name="Android64">
  686. <RemoteDir>res\drawable-anydpi-v24</RemoteDir>
  687. <Operation>1</Operation>
  688. </Platform>
  689. </DeployClass>
  690. <DeployClass Name="Android_VectorizedSplash">
  691. <Platform Name="Android">
  692. <RemoteDir>res\drawable</RemoteDir>
  693. <Operation>1</Operation>
  694. </Platform>
  695. <Platform Name="Android64">
  696. <RemoteDir>res\drawable</RemoteDir>
  697. <Operation>1</Operation>
  698. </Platform>
  699. </DeployClass>
  700. <DeployClass Name="Android_VectorizedSplashDark">
  701. <Platform Name="Android">
  702. <RemoteDir>res\drawable-night-anydpi-v21</RemoteDir>
  703. <Operation>1</Operation>
  704. </Platform>
  705. <Platform Name="Android64">
  706. <RemoteDir>res\drawable-night-anydpi-v21</RemoteDir>
  707. <Operation>1</Operation>
  708. </Platform>
  709. </DeployClass>
  710. <DeployClass Name="Android_VectorizedSplashV31">
  711. <Platform Name="Android">
  712. <RemoteDir>res\drawable-anydpi-v31</RemoteDir>
  713. <Operation>1</Operation>
  714. </Platform>
  715. <Platform Name="Android64">
  716. <RemoteDir>res\drawable-anydpi-v31</RemoteDir>
  717. <Operation>1</Operation>
  718. </Platform>
  719. </DeployClass>
  720. <DeployClass Name="Android_VectorizedSplashV31Dark">
  721. <Platform Name="Android">
  722. <RemoteDir>res\drawable-night-anydpi-v31</RemoteDir>
  723. <Operation>1</Operation>
  724. </Platform>
  725. <Platform Name="Android64">
  726. <RemoteDir>res\drawable-night-anydpi-v31</RemoteDir>
  727. <Operation>1</Operation>
  728. </Platform>
  729. </DeployClass>
  730. <DeployClass Name="DebugSymbols">
  731. <Platform Name="iOSSimulator">
  732. <Operation>1</Operation>
  733. </Platform>
  734. <Platform Name="OSX32">
  735. <RemoteDir>Contents\MacOS</RemoteDir>
  736. <Operation>1</Operation>
  737. </Platform>
  738. <Platform Name="Win32">
  739. <Operation>0</Operation>
  740. </Platform>
  741. </DeployClass>
  742. <DeployClass Name="DependencyFramework">
  743. <Platform Name="OSX32">
  744. <RemoteDir>Contents\MacOS</RemoteDir>
  745. <Operation>1</Operation>
  746. <Extensions>.framework</Extensions>
  747. </Platform>
  748. <Platform Name="OSX64">
  749. <RemoteDir>Contents\MacOS</RemoteDir>
  750. <Operation>1</Operation>
  751. <Extensions>.framework</Extensions>
  752. </Platform>
  753. <Platform Name="OSXARM64">
  754. <RemoteDir>Contents\MacOS</RemoteDir>
  755. <Operation>1</Operation>
  756. <Extensions>.framework</Extensions>
  757. </Platform>
  758. <Platform Name="Win32">
  759. <Operation>0</Operation>
  760. </Platform>
  761. </DeployClass>
  762. <DeployClass Name="DependencyModule">
  763. <Platform Name="iOSDevice32">
  764. <Operation>1</Operation>
  765. <Extensions>.dylib</Extensions>
  766. </Platform>
  767. <Platform Name="iOSDevice64">
  768. <Operation>1</Operation>
  769. <Extensions>.dylib</Extensions>
  770. </Platform>
  771. <Platform Name="iOSSimARM64">
  772. <Operation>1</Operation>
  773. <Extensions>.dylib</Extensions>
  774. </Platform>
  775. <Platform Name="OSX32">
  776. <RemoteDir>Contents\MacOS</RemoteDir>
  777. <Operation>1</Operation>
  778. <Extensions>.dylib</Extensions>
  779. </Platform>
  780. <Platform Name="OSX64">
  781. <RemoteDir>Contents\MacOS</RemoteDir>
  782. <Operation>1</Operation>
  783. <Extensions>.dylib</Extensions>
  784. </Platform>
  785. <Platform Name="OSXARM64">
  786. <RemoteDir>Contents\MacOS</RemoteDir>
  787. <Operation>1</Operation>
  788. <Extensions>.dylib</Extensions>
  789. </Platform>
  790. <Platform Name="Win32">
  791. <Operation>0</Operation>
  792. <Extensions>.dll;.bpl</Extensions>
  793. </Platform>
  794. </DeployClass>
  795. <DeployClass Required="true" Name="DependencyPackage">
  796. <Platform Name="iOSDevice32">
  797. <Operation>1</Operation>
  798. <Extensions>.dylib</Extensions>
  799. </Platform>
  800. <Platform Name="iOSDevice64">
  801. <Operation>1</Operation>
  802. <Extensions>.dylib</Extensions>
  803. </Platform>
  804. <Platform Name="iOSSimARM64">
  805. <Operation>1</Operation>
  806. <Extensions>.dylib</Extensions>
  807. </Platform>
  808. <Platform Name="OSX32">
  809. <RemoteDir>Contents\MacOS</RemoteDir>
  810. <Operation>1</Operation>
  811. <Extensions>.dylib</Extensions>
  812. </Platform>
  813. <Platform Name="OSX64">
  814. <RemoteDir>Contents\MacOS</RemoteDir>
  815. <Operation>1</Operation>
  816. <Extensions>.dylib</Extensions>
  817. </Platform>
  818. <Platform Name="OSXARM64">
  819. <RemoteDir>Contents\MacOS</RemoteDir>
  820. <Operation>1</Operation>
  821. <Extensions>.dylib</Extensions>
  822. </Platform>
  823. <Platform Name="Win32">
  824. <Operation>0</Operation>
  825. <Extensions>.bpl</Extensions>
  826. </Platform>
  827. </DeployClass>
  828. <DeployClass Name="File">
  829. <Platform Name="Android">
  830. <Operation>0</Operation>
  831. </Platform>
  832. <Platform Name="Android64">
  833. <Operation>0</Operation>
  834. </Platform>
  835. <Platform Name="iOSDevice32">
  836. <Operation>0</Operation>
  837. </Platform>
  838. <Platform Name="iOSDevice64">
  839. <Operation>0</Operation>
  840. </Platform>
  841. <Platform Name="iOSSimARM64">
  842. <Operation>0</Operation>
  843. </Platform>
  844. <Platform Name="OSX32">
  845. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  846. <Operation>0</Operation>
  847. </Platform>
  848. <Platform Name="OSX64">
  849. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  850. <Operation>0</Operation>
  851. </Platform>
  852. <Platform Name="OSXARM64">
  853. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  854. <Operation>0</Operation>
  855. </Platform>
  856. <Platform Name="Win32">
  857. <Operation>0</Operation>
  858. </Platform>
  859. </DeployClass>
  860. <DeployClass Name="ProjectAndroidManifest">
  861. <Platform Name="Android">
  862. <Operation>1</Operation>
  863. </Platform>
  864. <Platform Name="Android64">
  865. <Operation>1</Operation>
  866. </Platform>
  867. </DeployClass>
  868. <DeployClass Name="ProjectOSXDebug">
  869. <Platform Name="OSX64">
  870. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  871. <Operation>1</Operation>
  872. </Platform>
  873. <Platform Name="OSXARM64">
  874. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  875. <Operation>1</Operation>
  876. </Platform>
  877. </DeployClass>
  878. <DeployClass Name="ProjectOSXEntitlements">
  879. <Platform Name="OSX32">
  880. <RemoteDir>..\</RemoteDir>
  881. <Operation>1</Operation>
  882. </Platform>
  883. <Platform Name="OSX64">
  884. <RemoteDir>..\</RemoteDir>
  885. <Operation>1</Operation>
  886. </Platform>
  887. <Platform Name="OSXARM64">
  888. <RemoteDir>..\</RemoteDir>
  889. <Operation>1</Operation>
  890. </Platform>
  891. </DeployClass>
  892. <DeployClass Name="ProjectOSXInfoPList">
  893. <Platform Name="OSX32">
  894. <RemoteDir>Contents</RemoteDir>
  895. <Operation>1</Operation>
  896. </Platform>
  897. <Platform Name="OSX64">
  898. <RemoteDir>Contents</RemoteDir>
  899. <Operation>1</Operation>
  900. </Platform>
  901. <Platform Name="OSXARM64">
  902. <RemoteDir>Contents</RemoteDir>
  903. <Operation>1</Operation>
  904. </Platform>
  905. </DeployClass>
  906. <DeployClass Name="ProjectOSXResource">
  907. <Platform Name="OSX32">
  908. <RemoteDir>Contents\Resources</RemoteDir>
  909. <Operation>1</Operation>
  910. </Platform>
  911. <Platform Name="OSX64">
  912. <RemoteDir>Contents\Resources</RemoteDir>
  913. <Operation>1</Operation>
  914. </Platform>
  915. <Platform Name="OSXARM64">
  916. <RemoteDir>Contents\Resources</RemoteDir>
  917. <Operation>1</Operation>
  918. </Platform>
  919. </DeployClass>
  920. <DeployClass Required="true" Name="ProjectOutput">
  921. <Platform Name="Android">
  922. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  923. <Operation>1</Operation>
  924. </Platform>
  925. <Platform Name="Android64">
  926. <RemoteDir>library\lib\arm64-v8a</RemoteDir>
  927. <Operation>1</Operation>
  928. </Platform>
  929. <Platform Name="iOSDevice32">
  930. <Operation>1</Operation>
  931. </Platform>
  932. <Platform Name="iOSDevice64">
  933. <Operation>1</Operation>
  934. </Platform>
  935. <Platform Name="iOSSimARM64">
  936. <Operation>1</Operation>
  937. </Platform>
  938. <Platform Name="Linux64">
  939. <Operation>1</Operation>
  940. </Platform>
  941. <Platform Name="OSX32">
  942. <RemoteDir>Contents\MacOS</RemoteDir>
  943. <Operation>1</Operation>
  944. </Platform>
  945. <Platform Name="OSX64">
  946. <RemoteDir>Contents\MacOS</RemoteDir>
  947. <Operation>1</Operation>
  948. </Platform>
  949. <Platform Name="OSXARM64">
  950. <RemoteDir>Contents\MacOS</RemoteDir>
  951. <Operation>1</Operation>
  952. </Platform>
  953. <Platform Name="Win32">
  954. <Operation>0</Operation>
  955. </Platform>
  956. </DeployClass>
  957. <DeployClass Name="ProjectOutput_Android32">
  958. <Platform Name="Android64">
  959. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  960. <Operation>1</Operation>
  961. </Platform>
  962. </DeployClass>
  963. <DeployClass Name="ProjectUWPManifest">
  964. <Platform Name="Win32">
  965. <Operation>1</Operation>
  966. </Platform>
  967. <Platform Name="Win64">
  968. <Operation>1</Operation>
  969. </Platform>
  970. <Platform Name="Win64x">
  971. <Operation>1</Operation>
  972. </Platform>
  973. </DeployClass>
  974. <DeployClass Name="ProjectiOSDeviceDebug">
  975. <Platform Name="iOSDevice32">
  976. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  977. <Operation>1</Operation>
  978. </Platform>
  979. <Platform Name="iOSDevice64">
  980. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  981. <Operation>1</Operation>
  982. </Platform>
  983. <Platform Name="iOSSimARM64">
  984. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  985. <Operation>1</Operation>
  986. </Platform>
  987. </DeployClass>
  988. <DeployClass Name="ProjectiOSEntitlements">
  989. <Platform Name="iOSDevice32">
  990. <RemoteDir>..\</RemoteDir>
  991. <Operation>1</Operation>
  992. </Platform>
  993. <Platform Name="iOSDevice64">
  994. <RemoteDir>..\</RemoteDir>
  995. <Operation>1</Operation>
  996. </Platform>
  997. <Platform Name="iOSSimARM64">
  998. <RemoteDir>..\</RemoteDir>
  999. <Operation>1</Operation>
  1000. </Platform>
  1001. </DeployClass>
  1002. <DeployClass Name="ProjectiOSInfoPList">
  1003. <Platform Name="iOSDevice32">
  1004. <Operation>1</Operation>
  1005. </Platform>
  1006. <Platform Name="iOSDevice64">
  1007. <Operation>1</Operation>
  1008. </Platform>
  1009. <Platform Name="iOSSimARM64">
  1010. <Operation>1</Operation>
  1011. </Platform>
  1012. </DeployClass>
  1013. <DeployClass Name="ProjectiOSLaunchScreen">
  1014. <Platform Name="iOSDevice64">
  1015. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  1016. <Operation>64</Operation>
  1017. </Platform>
  1018. <Platform Name="iOSSimARM64">
  1019. <RemoteDir>..\$(PROJECTNAME).launchscreen</RemoteDir>
  1020. <Operation>64</Operation>
  1021. </Platform>
  1022. </DeployClass>
  1023. <DeployClass Name="ProjectiOSResource">
  1024. <Platform Name="iOSDevice32">
  1025. <Operation>1</Operation>
  1026. </Platform>
  1027. <Platform Name="iOSDevice64">
  1028. <Operation>1</Operation>
  1029. </Platform>
  1030. <Platform Name="iOSSimARM64">
  1031. <Operation>1</Operation>
  1032. </Platform>
  1033. </DeployClass>
  1034. <DeployClass Name="UWP_CppLogo150">
  1035. <Platform Name="Win32">
  1036. <RemoteDir>Assets</RemoteDir>
  1037. <Operation>1</Operation>
  1038. </Platform>
  1039. <Platform Name="Win64">
  1040. <RemoteDir>Assets</RemoteDir>
  1041. <Operation>1</Operation>
  1042. </Platform>
  1043. <Platform Name="Win64x">
  1044. <RemoteDir>Assets</RemoteDir>
  1045. <Operation>1</Operation>
  1046. </Platform>
  1047. </DeployClass>
  1048. <DeployClass Name="UWP_CppLogo44">
  1049. <Platform Name="Win32">
  1050. <RemoteDir>Assets</RemoteDir>
  1051. <Operation>1</Operation>
  1052. </Platform>
  1053. <Platform Name="Win64">
  1054. <RemoteDir>Assets</RemoteDir>
  1055. <Operation>1</Operation>
  1056. </Platform>
  1057. <Platform Name="Win64x">
  1058. <RemoteDir>Assets</RemoteDir>
  1059. <Operation>1</Operation>
  1060. </Platform>
  1061. </DeployClass>
  1062. <DeployClass Name="iOS_AppStore1024">
  1063. <Platform Name="iOSDevice64">
  1064. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1065. <Operation>1</Operation>
  1066. </Platform>
  1067. <Platform Name="iOSSimARM64">
  1068. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1069. <Operation>1</Operation>
  1070. </Platform>
  1071. </DeployClass>
  1072. <DeployClass Name="iPad_AppIcon152">
  1073. <Platform Name="iOSDevice64">
  1074. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1075. <Operation>1</Operation>
  1076. </Platform>
  1077. <Platform Name="iOSSimARM64">
  1078. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1079. <Operation>1</Operation>
  1080. </Platform>
  1081. </DeployClass>
  1082. <DeployClass Name="iPad_AppIcon167">
  1083. <Platform Name="iOSDevice64">
  1084. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1085. <Operation>1</Operation>
  1086. </Platform>
  1087. <Platform Name="iOSSimARM64">
  1088. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1089. <Operation>1</Operation>
  1090. </Platform>
  1091. </DeployClass>
  1092. <DeployClass Name="iPad_Launch2x">
  1093. <Platform Name="iOSDevice64">
  1094. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1095. <Operation>1</Operation>
  1096. </Platform>
  1097. <Platform Name="iOSSimARM64">
  1098. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1099. <Operation>1</Operation>
  1100. </Platform>
  1101. </DeployClass>
  1102. <DeployClass Name="iPad_LaunchDark2x">
  1103. <Platform Name="iOSDevice64">
  1104. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1105. <Operation>1</Operation>
  1106. </Platform>
  1107. <Platform Name="iOSSimARM64">
  1108. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1109. <Operation>1</Operation>
  1110. </Platform>
  1111. </DeployClass>
  1112. <DeployClass Name="iPad_Notification40">
  1113. <Platform Name="iOSDevice64">
  1114. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1115. <Operation>1</Operation>
  1116. </Platform>
  1117. <Platform Name="iOSSimARM64">
  1118. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1119. <Operation>1</Operation>
  1120. </Platform>
  1121. </DeployClass>
  1122. <DeployClass Name="iPad_Setting58">
  1123. <Platform Name="iOSDevice64">
  1124. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1125. <Operation>1</Operation>
  1126. </Platform>
  1127. <Platform Name="iOSSimARM64">
  1128. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1129. <Operation>1</Operation>
  1130. </Platform>
  1131. </DeployClass>
  1132. <DeployClass Name="iPad_SpotLight80">
  1133. <Platform Name="iOSDevice64">
  1134. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1135. <Operation>1</Operation>
  1136. </Platform>
  1137. <Platform Name="iOSSimARM64">
  1138. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1139. <Operation>1</Operation>
  1140. </Platform>
  1141. </DeployClass>
  1142. <DeployClass Name="iPhone_AppIcon120">
  1143. <Platform Name="iOSDevice64">
  1144. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1145. <Operation>1</Operation>
  1146. </Platform>
  1147. <Platform Name="iOSSimARM64">
  1148. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1149. <Operation>1</Operation>
  1150. </Platform>
  1151. </DeployClass>
  1152. <DeployClass Name="iPhone_AppIcon180">
  1153. <Platform Name="iOSDevice64">
  1154. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1155. <Operation>1</Operation>
  1156. </Platform>
  1157. <Platform Name="iOSSimARM64">
  1158. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1159. <Operation>1</Operation>
  1160. </Platform>
  1161. </DeployClass>
  1162. <DeployClass Name="iPhone_Launch2x">
  1163. <Platform Name="iOSDevice64">
  1164. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1165. <Operation>1</Operation>
  1166. </Platform>
  1167. <Platform Name="iOSSimARM64">
  1168. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1169. <Operation>1</Operation>
  1170. </Platform>
  1171. </DeployClass>
  1172. <DeployClass Name="iPhone_Launch3x">
  1173. <Platform Name="iOSDevice64">
  1174. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1175. <Operation>1</Operation>
  1176. </Platform>
  1177. <Platform Name="iOSSimARM64">
  1178. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1179. <Operation>1</Operation>
  1180. </Platform>
  1181. </DeployClass>
  1182. <DeployClass Name="iPhone_LaunchDark2x">
  1183. <Platform Name="iOSDevice64">
  1184. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1185. <Operation>1</Operation>
  1186. </Platform>
  1187. <Platform Name="iOSSimARM64">
  1188. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1189. <Operation>1</Operation>
  1190. </Platform>
  1191. </DeployClass>
  1192. <DeployClass Name="iPhone_LaunchDark3x">
  1193. <Platform Name="iOSDevice64">
  1194. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1195. <Operation>1</Operation>
  1196. </Platform>
  1197. <Platform Name="iOSSimARM64">
  1198. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\LaunchScreenImage.imageset</RemoteDir>
  1199. <Operation>1</Operation>
  1200. </Platform>
  1201. </DeployClass>
  1202. <DeployClass Name="iPhone_Notification40">
  1203. <Platform Name="iOSDevice64">
  1204. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1205. <Operation>1</Operation>
  1206. </Platform>
  1207. <Platform Name="iOSSimARM64">
  1208. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1209. <Operation>1</Operation>
  1210. </Platform>
  1211. </DeployClass>
  1212. <DeployClass Name="iPhone_Notification60">
  1213. <Platform Name="iOSDevice64">
  1214. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1215. <Operation>1</Operation>
  1216. </Platform>
  1217. <Platform Name="iOSSimARM64">
  1218. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1219. <Operation>1</Operation>
  1220. </Platform>
  1221. </DeployClass>
  1222. <DeployClass Name="iPhone_Setting58">
  1223. <Platform Name="iOSDevice64">
  1224. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1225. <Operation>1</Operation>
  1226. </Platform>
  1227. <Platform Name="iOSSimARM64">
  1228. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1229. <Operation>1</Operation>
  1230. </Platform>
  1231. </DeployClass>
  1232. <DeployClass Name="iPhone_Setting87">
  1233. <Platform Name="iOSDevice64">
  1234. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1235. <Operation>1</Operation>
  1236. </Platform>
  1237. <Platform Name="iOSSimARM64">
  1238. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1239. <Operation>1</Operation>
  1240. </Platform>
  1241. </DeployClass>
  1242. <DeployClass Name="iPhone_Spotlight120">
  1243. <Platform Name="iOSDevice64">
  1244. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1245. <Operation>1</Operation>
  1246. </Platform>
  1247. <Platform Name="iOSSimARM64">
  1248. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1249. <Operation>1</Operation>
  1250. </Platform>
  1251. </DeployClass>
  1252. <DeployClass Name="iPhone_Spotlight80">
  1253. <Platform Name="iOSDevice64">
  1254. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1255. <Operation>1</Operation>
  1256. </Platform>
  1257. <Platform Name="iOSSimARM64">
  1258. <RemoteDir>..\$(PROJECTNAME).launchscreen\Assets\AppIcon.appiconset</RemoteDir>
  1259. <Operation>1</Operation>
  1260. </Platform>
  1261. </DeployClass>
  1262. <ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
  1263. <ProjectRoot Platform="Android64" Name="$(PROJECTNAME)"/>
  1264. <ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
  1265. <ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
  1266. <ProjectRoot Platform="iOSSimARM64" Name="$(PROJECTNAME).app"/>
  1267. <ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
  1268. <ProjectRoot Platform="Linux64" Name="$(PROJECTNAME)"/>
  1269. <ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
  1270. <ProjectRoot Platform="OSX64" Name="$(PROJECTNAME).app"/>
  1271. <ProjectRoot Platform="OSXARM64" Name="$(PROJECTNAME).app"/>
  1272. <ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
  1273. <ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
  1274. <ProjectRoot Platform="Win64x" Name="$(PROJECTNAME)"/>
  1275. </Deployment>
  1276. <Platforms>
  1277. <Platform value="Win32">True</Platform>
  1278. <Platform value="Win64">False</Platform>
  1279. <Platform value="Win64x">False</Platform>
  1280. </Platforms>
  1281. </BorlandProject>
  1282. <ProjectFileVersion>12</ProjectFileVersion>
  1283. </ProjectExtensions>
  1284. <Import Project="$(BDS)\Bin\CodeGear.Cpp.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Cpp.Targets')"/>
  1285. <Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
  1286. <Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
  1287. </Project>