SimpleShaderC.cbproj 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032
  1. <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <ProjectGuid>{DBAE2D35-1B3D-4B05-AEB0-3A064B4FD0F8}</ProjectGuid>
  4. <ProjectType>CppVCLApplication</ProjectType>
  5. <MainSource>SimpleShaderC.cpp</MainSource>
  6. <Base>True</Base>
  7. <Config Condition="'$(Config)'==''">Debug</Config>
  8. <FrameworkType>VCL</FrameworkType>
  9. <ProjectVersion>18.7</ProjectVersion>
  10. <Platform Condition="'$(Platform)'==''">Win32</Platform>
  11. <TargetedPlatforms>3</TargetedPlatforms>
  12. <AppType>Application</AppType>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
  15. <Base>true</Base>
  16. </PropertyGroup>
  17. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
  18. <Base_Win32>true</Base_Win32>
  19. <CfgParent>Base</CfgParent>
  20. <Base>true</Base>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
  23. <Base_Win64>true</Base_Win64>
  24. <CfgParent>Base</CfgParent>
  25. <Base>true</Base>
  26. </PropertyGroup>
  27. <PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
  28. <Cfg_1>true</Cfg_1>
  29. <CfgParent>Base</CfgParent>
  30. <Base>true</Base>
  31. </PropertyGroup>
  32. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
  33. <Cfg_1_Win32>true</Cfg_1_Win32>
  34. <CfgParent>Cfg_1</CfgParent>
  35. <Cfg_1>true</Cfg_1>
  36. <Base>true</Base>
  37. </PropertyGroup>
  38. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
  39. <Cfg_1_Win64>true</Cfg_1_Win64>
  40. <CfgParent>Cfg_1</CfgParent>
  41. <Cfg_1>true</Cfg_1>
  42. <Base>true</Base>
  43. </PropertyGroup>
  44. <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
  45. <Cfg_2>true</Cfg_2>
  46. <CfgParent>Base</CfgParent>
  47. <Base>true</Base>
  48. </PropertyGroup>
  49. <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
  50. <Cfg_2_Win32>true</Cfg_2_Win32>
  51. <CfgParent>Cfg_2</CfgParent>
  52. <Cfg_2>true</Cfg_2>
  53. <Base>true</Base>
  54. </PropertyGroup>
  55. <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64)'!=''">
  56. <Cfg_2_Win64>true</Cfg_2_Win64>
  57. <CfgParent>Cfg_2</CfgParent>
  58. <Cfg_2>true</Cfg_2>
  59. <Base>true</Base>
  60. </PropertyGroup>
  61. <PropertyGroup Condition="'$(Base)'!=''">
  62. <SanitizedProjectName>SimpleShaderC</SanitizedProjectName>
  63. <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
  64. <DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace>
  65. <VerInfo_Locale>1036</VerInfo_Locale>
  66. <BCC_GenerateWindowsApp>true</BCC_GenerateWindowsApp>
  67. <UsePackages>true</UsePackages>
  68. <ILINK_FullDebugInfo>true</ILINK_FullDebugInfo>
  69. <BCC_DebugLineNumbers>true</BCC_DebugLineNumbers>
  70. <ILINK_LibraryPath>$(BDS)\lib\obj;$(BDS)\lib;..\..\..\..\lib;..\..\..\..\dcu;$(BDS)\lib\psdk;$(ILINK_LibraryPath)</ILINK_LibraryPath>
  71. <TASM_AdditionalSwitches> /w2</TASM_AdditionalSwitches>
  72. <BRCC_IncludePath>$(BDS)\include;$(BDS)\include\vcl;..\..\..\..\include;$(BRCC_IncludePath)</BRCC_IncludePath>
  73. <FinalOutputDir>.</FinalOutputDir>
  74. <DCC_CBuilderOutput>JPHNE</DCC_CBuilderOutput>
  75. <AllPackageLibs>rtl.lib;vcl.lib;GLScene_RT.lib;fmx.lib;xmlrtl.lib;vclimg.lib</AllPackageLibs>
  76. <TASM_IncludePath>$(BDS)\include;$(BDS)\include\vcl;..\..\..\..\include;$(TASM_IncludePath)</TASM_IncludePath>
  77. <BCC_InlineFunctionExpansion>false</BCC_InlineFunctionExpansion>
  78. <BCC_SourceDebuggingOn>true</BCC_SourceDebuggingOn>
  79. <DCC_IncludePath>.\;$(BDS)\lib;$(BDS)\lib\obj;$(DCC_IncludePath)</DCC_IncludePath>
  80. <DCC_AdditionalSwitches> -M</DCC_AdditionalSwitches>
  81. <OutputExt>exe</OutputExt>
  82. <PackageImports>rtl.bpi;vcl.bpi;$(PackageImports)</PackageImports>
  83. <DCC_UnitSearchPath>.\;$(BDS)\lib;$(BDS)\lib\obj;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
  84. <BCC_PCHCache>true</BCC_PCHCache>
  85. <ILINK_AppType>Windows</ILINK_AppType>
  86. <DynamicRTL>true</DynamicRTL>
  87. <BCC_DisableOptimizations>true</BCC_DisableOptimizations>
  88. <BCC_IncludePath>$(BDS)\include;$(BCC_IncludePath)</BCC_IncludePath>
  89. </PropertyGroup>
  90. <PropertyGroup Condition="'$(Base_Win32)'!=''">
  91. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  92. <BRCC_Defines>_DEBUG;$(BRCC_Defines)</BRCC_Defines>
  93. <TASM_Defines>_DEBUG;$(TASM_Defines)</TASM_Defines>
  94. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
  95. <VerInfo_Locale>1033</VerInfo_Locale>
  96. <IncludePath>$(BDSINCLUDE)\windows\vcl;$(IncludePath)</IncludePath>
  97. <Icon_MainIcon>$(BDS)\bin\cbuilder_PROJECTICON.ico</Icon_MainIcon>
  98. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  99. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  100. <UWP_CppLogo44>$(BDS)\bin\Artwork\Windows\UWP\cppreg_UwpDefault_44.png</UWP_CppLogo44>
  101. <UWP_CppLogo150>$(BDS)\bin\Artwork\Windows\UWP\cppreg_UwpDefault_150.png</UWP_CppLogo150>
  102. </PropertyGroup>
  103. <PropertyGroup Condition="'$(Base_Win64)'!=''">
  104. <Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
  105. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  106. <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
  107. <VerInfo_Locale>1033</VerInfo_Locale>
  108. <BRCC_Defines>_DEBUG;$(BRCC_Defines)</BRCC_Defines>
  109. <TASM_Defines>_DEBUG;$(TASM_Defines)</TASM_Defines>
  110. <IncludePath>$(BDSINCLUDE)\windows\vcl;$(IncludePath)</IncludePath>
  111. <Icon_MainIcon>SimpleGLSL_Icon.ico</Icon_MainIcon>
  112. <UWP_CppLogo44>$(BDS)\bin\Artwork\Windows\UWP\cppreg_UwpDefault_44.png</UWP_CppLogo44>
  113. <UWP_CppLogo150>$(BDS)\bin\Artwork\Windows\UWP\cppreg_UwpDefault_150.png</UWP_CppLogo150>
  114. </PropertyGroup>
  115. <PropertyGroup Condition="'$(Cfg_1)'!=''">
  116. <ILINK_LibraryPath>$(BDS)\lib\debug;$(ILINK_LibraryPath);$(ILINK_LibraryPath)</ILINK_LibraryPath>
  117. <DCC_Define>DEBUG;$(DCC_Define);$(DCC_Define)</DCC_Define>
  118. <ILINK_DisableIncrementalLinking>true</ILINK_DisableIncrementalLinking>
  119. <TASM_DisplaySourceLines>true</TASM_DisplaySourceLines>
  120. <DCC_AdditionalSwitches> -M -V</DCC_AdditionalSwitches>
  121. <IntermediateOutputDir>Debug_Build</IntermediateOutputDir>
  122. <TASM_Debugging>Full</TASM_Debugging>
  123. <DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
  124. </PropertyGroup>
  125. <PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
  126. <IntermediateOutputDir>.\$(Platform)\$(Config)</IntermediateOutputDir>
  127. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  128. <BCC_Defines>_DEBUG;$(BCC_Defines);$(BCC_Defines)</BCC_Defines>
  129. <ILINK_LibraryPath>$(BDSCOMMONDIR)\Dcp</ILINK_LibraryPath>
  130. <BCC_UserSuppliedOptions> -tWM -6 -ff -Vx -r- -k -Ve -k</BCC_UserSuppliedOptions>
  131. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  132. <VerInfo_Locale>1033</VerInfo_Locale>
  133. <LinkPackageStatics>GLScene_RT.lib;fmx.lib;xmlrtl.lib;vclimg.lib</LinkPackageStatics>
  134. <LinkPackageImports>rtl.bpi;vcl.bpi</LinkPackageImports>
  135. <BT_BuildType>Debug</BT_BuildType>
  136. </PropertyGroup>
  137. <PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
  138. <FinalOutputDir>.\$(Platform)\$(Config)</FinalOutputDir>
  139. <IntermediateOutputDir>.\$(Platform)\$(Config)</IntermediateOutputDir>
  140. <VerInfo_Locale>1033</VerInfo_Locale>
  141. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  142. <Icon_MainIcon>$(BDS)\bin\cbuilder_PROJECTICON.ico</Icon_MainIcon>
  143. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  144. <BCC_Defines>_DEBUG;$(BCC_Defines);$(BCC_Defines)</BCC_Defines>
  145. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  146. <BT_BuildType>Debug</BT_BuildType>
  147. </PropertyGroup>
  148. <PropertyGroup Condition="'$(Cfg_2)'!=''">
  149. <BCC_OptimizationLevel>Level2</BCC_OptimizationLevel>
  150. <ILINK_LibraryPath>$(BDS)\lib\release;$(ILINK_LibraryPath);$(ILINK_LibraryPath)</ILINK_LibraryPath>
  151. <BCC_InlineFunctionExpansion>true</BCC_InlineFunctionExpansion>
  152. <DCC_AdditionalSwitches> -M -$O+</DCC_AdditionalSwitches>
  153. <TASM_Debugging>None</TASM_Debugging>
  154. <IntermediateOutputDir>Release_Build</IntermediateOutputDir>
  155. </PropertyGroup>
  156. <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
  157. <VerInfo_Locale>1033</VerInfo_Locale>
  158. <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
  159. <BCC_Defines>NDEBUG;$(BCC_Defines);$(BCC_Defines)</BCC_Defines>
  160. </PropertyGroup>
  161. <PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
  162. <AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
  163. <BCC_Defines>NDEBUG;$(BCC_Defines);$(BCC_Defines)</BCC_Defines>
  164. <AppDPIAwarenessMode>PerMonitor</AppDPIAwarenessMode>
  165. </PropertyGroup>
  166. <ItemGroup>
  167. <CppCompile Include="fSimpleShaderC.cpp">
  168. <BuildOrder>2</BuildOrder>
  169. <Form>Form1</Form>
  170. <DependentOn>fSimpleShaderC.h</DependentOn>
  171. <BuildOrder>0</BuildOrder>
  172. </CppCompile>
  173. <CppCompile Include="SimpleShaderC.cpp">
  174. <BuildOrder>-1</BuildOrder>
  175. <BuildOrder>0</BuildOrder>
  176. </CppCompile>
  177. <FormResources Include="fSimpleShaderC.dfm"/>
  178. <BuildConfiguration Include="Release">
  179. <Key>Cfg_2</Key>
  180. <CfgParent>Base</CfgParent>
  181. </BuildConfiguration>
  182. <BuildConfiguration Include="Base">
  183. <Key>Base</Key>
  184. </BuildConfiguration>
  185. <BuildConfiguration Include="Debug">
  186. <Key>Cfg_1</Key>
  187. <CfgParent>Base</CfgParent>
  188. </BuildConfiguration>
  189. </ItemGroup>
  190. <Import Project="$(BDS)\Bin\CodeGear.Cpp.Targets"/>
  191. <ProjectExtensions>
  192. <Borland.Personality>CPlusPlusBuilder.Personality.12</Borland.Personality>
  193. <Borland.ProjectType>CppVCLApplication</Borland.ProjectType>
  194. <BorlandProject>
  195. <CPlusPlusBuilder.Personality>
  196. <VersionInfo>
  197. <VersionInfo Name="IncludeVerInfo">False</VersionInfo>
  198. <VersionInfo Name="AutoIncBuild">False</VersionInfo>
  199. <VersionInfo Name="MajorVer">1</VersionInfo>
  200. <VersionInfo Name="MinorVer">0</VersionInfo>
  201. <VersionInfo Name="Release">0</VersionInfo>
  202. <VersionInfo Name="Build">0</VersionInfo>
  203. <VersionInfo Name="Debug">False</VersionInfo>
  204. <VersionInfo Name="PreRelease">False</VersionInfo>
  205. <VersionInfo Name="Special">False</VersionInfo>
  206. <VersionInfo Name="Private">False</VersionInfo>
  207. <VersionInfo Name="DLL">False</VersionInfo>
  208. <VersionInfo Name="Locale">1036</VersionInfo>
  209. <VersionInfo Name="CodePage">1252</VersionInfo>
  210. </VersionInfo>
  211. <VersionInfoKeys>
  212. <VersionInfoKeys Name="CompanyName"/>
  213. <VersionInfoKeys Name="FileDescription"/>
  214. <VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
  215. <VersionInfoKeys Name="InternalName"/>
  216. <VersionInfoKeys Name="LegalCopyright"/>
  217. <VersionInfoKeys Name="LegalTrademarks"/>
  218. <VersionInfoKeys Name="OriginalFilename"/>
  219. <VersionInfoKeys Name="ProductName"/>
  220. <VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
  221. <VersionInfoKeys Name="Comments"/>
  222. </VersionInfoKeys>
  223. <Parameters>
  224. <Parameters Name="RunParams"/>
  225. <Parameters Name="HostApplication"/>
  226. <Parameters Name="RemoteHost"/>
  227. <Parameters Name="RemotePath"/>
  228. <Parameters Name="RemoteDebug">0</Parameters>
  229. </Parameters>
  230. <Compiler>
  231. <Compiler Name="ShowInfoMsgs">0</Compiler>
  232. <Compiler Name="LinkDebugVcl">0</Compiler>
  233. <Compiler Name="LinkCGLIB">0</Compiler>
  234. </Compiler>
  235. <ProjectProperties>
  236. <ProjectProperties Name="AutoShowDeps">False</ProjectProperties>
  237. <ProjectProperties Name="ManagePaths">True</ProjectProperties>
  238. <ProjectProperties Name="VerifyPackages">True</ProjectProperties>
  239. <ProjectProperties Name="IndexFiles">False</ProjectProperties>
  240. </ProjectProperties>
  241. <Source>
  242. <Source Name="MainSource">SimpleShaderC.cpp</Source>
  243. </Source>
  244. <Excluded_Packages>
  245. <Excluded_Packages Name="$(BDSBIN)\bcboffice2k260.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages>
  246. <Excluded_Packages Name="$(BDSBIN)\bcbofficexp260.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages>
  247. <Excluded_Packages Name="$(BDSBIN)\dcloffice2k260.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
  248. <Excluded_Packages Name="$(BDSBIN)\dclofficexp260.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
  249. </Excluded_Packages>
  250. </CPlusPlusBuilder.Personality>
  251. <Platforms>
  252. <Platform value="Win32">True</Platform>
  253. <Platform value="Win64">True</Platform>
  254. </Platforms>
  255. <Deployment Version="3">
  256. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'!='true'" LocalName="$(BDS)\bin\cc32c260.dll" Class="DependencyModule">
  257. <Platform Name="Win32">
  258. <Overwrite>true</Overwrite>
  259. </Platform>
  260. </DeployFile>
  261. <DeployFile Condition="'$(DynamicRTL)'=='true'" LocalName="$(BDS)\Redist\osx32\libcgcrtl.dylib" Class="DependencyModule">
  262. <Platform Name="OSX32">
  263. <Overwrite>true</Overwrite>
  264. </Platform>
  265. </DeployFile>
  266. <DeployFile Condition="'$(DynamicRTL)'=='true'" LocalName="$(BDS)\Redist\osx64\libcgstl.dylib" Class="DependencyModule">
  267. <Platform Name="OSX64">
  268. <Overwrite>true</Overwrite>
  269. </Platform>
  270. </DeployFile>
  271. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'=='true'" LocalName="$(BDS)\bin\cc32260mt.dll" Class="DependencyModule">
  272. <Platform Name="Win32">
  273. <Overwrite>true</Overwrite>
  274. </Platform>
  275. </DeployFile>
  276. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'!='true'" LocalName="$(BDS)\bin\cc32260.dll" Class="DependencyModule">
  277. <Platform Name="Win32">
  278. <Overwrite>true</Overwrite>
  279. </Platform>
  280. </DeployFile>
  281. <DeployFile Condition="'$(DynamicRTL)'=='true'" LocalName="$(BDS)\Redist\osx32\libcgstl.dylib" Class="DependencyModule">
  282. <Platform Name="OSX32">
  283. <Overwrite>true</Overwrite>
  284. </Platform>
  285. </DeployFile>
  286. <DeployFile Condition="'$(UsingDelphiRTL)'=='true'" LocalName="$(BDS)\bin\borlndmm.dll" Class="DependencyModule">
  287. <Platform Name="Win32">
  288. <Overwrite>true</Overwrite>
  289. </Platform>
  290. </DeployFile>
  291. <DeployFile Condition="'$(UsingDelphiRTL)'=='true'" LocalName="$(BDS)\bin64\borlndmm.dll" Class="DependencyModule">
  292. <Platform Name="Win64">
  293. <Overwrite>true</Overwrite>
  294. </Platform>
  295. </DeployFile>
  296. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'=='true'" LocalName="$(BDS)\bin64\cc64260mt.dll" Class="DependencyModule">
  297. <Platform Name="Win64">
  298. <Overwrite>true</Overwrite>
  299. </Platform>
  300. </DeployFile>
  301. <DeployFile LocalName=".\SimpleShaderC.tds" Configuration="Debug" Class="DebugSymbols">
  302. <Platform Name="Win32">
  303. <RemoteName>SimpleShaderC.tds</RemoteName>
  304. <Overwrite>true</Overwrite>
  305. </Platform>
  306. </DeployFile>
  307. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'!='true'" LocalName="$(BDS)\bin64\cc64260.dll" Class="DependencyModule">
  308. <Platform Name="Win64">
  309. <Overwrite>true</Overwrite>
  310. </Platform>
  311. </DeployFile>
  312. <DeployFile Condition="'$(DynamicRTL)'=='true' And '$(Multithreaded)'=='true'" LocalName="$(BDS)\bin\cc32c260mt.dll" Class="DependencyModule">
  313. <Platform Name="Win32">
  314. <Overwrite>true</Overwrite>
  315. </Platform>
  316. </DeployFile>
  317. <DeployFile Condition="'$(DynamicRTL)'=='true'" LocalName="$(BDS)\Redist\osx64\libcgcrtl.dylib" Class="DependencyModule">
  318. <Platform Name="OSX64">
  319. <Overwrite>true</Overwrite>
  320. </Platform>
  321. </DeployFile>
  322. <DeployFile LocalName=".\SimpleShaderC.exe" Configuration="Debug" Class="ProjectOutput">
  323. <Platform Name="Win32">
  324. <RemoteName>SimpleShaderC.exe</RemoteName>
  325. <Overwrite>true</Overwrite>
  326. </Platform>
  327. </DeployFile>
  328. <DeployClass Name="AdditionalDebugSymbols">
  329. <Platform Name="iOSSimulator">
  330. <Operation>1</Operation>
  331. </Platform>
  332. <Platform Name="OSX32">
  333. <RemoteDir>Contents\MacOS</RemoteDir>
  334. <Operation>1</Operation>
  335. </Platform>
  336. <Platform Name="Win32">
  337. <Operation>0</Operation>
  338. </Platform>
  339. </DeployClass>
  340. <DeployClass Name="AndroidClassesDexFile">
  341. <Platform Name="Android">
  342. <RemoteDir>classes</RemoteDir>
  343. <Operation>1</Operation>
  344. </Platform>
  345. </DeployClass>
  346. <DeployClass Name="AndroidFileProvider">
  347. <Platform Name="Android">
  348. <RemoteDir>res\xml</RemoteDir>
  349. <Operation>1</Operation>
  350. </Platform>
  351. </DeployClass>
  352. <DeployClass Name="AndroidGDBServer">
  353. <Platform Name="Android">
  354. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  355. <Operation>1</Operation>
  356. </Platform>
  357. </DeployClass>
  358. <DeployClass Name="AndroidLibnativeArmeabiFile">
  359. <Platform Name="Android">
  360. <RemoteDir>library\lib\armeabi</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. </DeployClass>
  370. <DeployClass Name="AndroidServiceOutput">
  371. <Platform Name="Android">
  372. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  373. <Operation>1</Operation>
  374. </Platform>
  375. </DeployClass>
  376. <DeployClass Name="AndroidSplashImageDef">
  377. <Platform Name="Android">
  378. <RemoteDir>res\drawable</RemoteDir>
  379. <Operation>1</Operation>
  380. </Platform>
  381. </DeployClass>
  382. <DeployClass Name="AndroidSplashStyles">
  383. <Platform Name="Android">
  384. <RemoteDir>res\values</RemoteDir>
  385. <Operation>1</Operation>
  386. </Platform>
  387. </DeployClass>
  388. <DeployClass Name="AndroidSplashStylesV21">
  389. <Platform Name="Android">
  390. <RemoteDir>res\values-v21</RemoteDir>
  391. <Operation>1</Operation>
  392. </Platform>
  393. </DeployClass>
  394. <DeployClass Name="Android_Colors">
  395. <Platform Name="Android">
  396. <RemoteDir>res\values</RemoteDir>
  397. <Operation>1</Operation>
  398. </Platform>
  399. </DeployClass>
  400. <DeployClass Name="Android_DefaultAppIcon">
  401. <Platform Name="Android">
  402. <RemoteDir>res\drawable</RemoteDir>
  403. <Operation>1</Operation>
  404. </Platform>
  405. </DeployClass>
  406. <DeployClass Name="Android_LauncherIcon144">
  407. <Platform Name="Android">
  408. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  409. <Operation>1</Operation>
  410. </Platform>
  411. </DeployClass>
  412. <DeployClass Name="Android_LauncherIcon36">
  413. <Platform Name="Android">
  414. <RemoteDir>res\drawable-ldpi</RemoteDir>
  415. <Operation>1</Operation>
  416. </Platform>
  417. </DeployClass>
  418. <DeployClass Name="Android_LauncherIcon48">
  419. <Platform Name="Android">
  420. <RemoteDir>res\drawable-mdpi</RemoteDir>
  421. <Operation>1</Operation>
  422. </Platform>
  423. </DeployClass>
  424. <DeployClass Name="Android_LauncherIcon72">
  425. <Platform Name="Android">
  426. <RemoteDir>res\drawable-hdpi</RemoteDir>
  427. <Operation>1</Operation>
  428. </Platform>
  429. </DeployClass>
  430. <DeployClass Name="Android_LauncherIcon96">
  431. <Platform Name="Android">
  432. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  433. <Operation>1</Operation>
  434. </Platform>
  435. </DeployClass>
  436. <DeployClass Name="Android_NotificationIcon24">
  437. <Platform Name="Android">
  438. <RemoteDir>res\drawable-mdpi</RemoteDir>
  439. <Operation>1</Operation>
  440. </Platform>
  441. </DeployClass>
  442. <DeployClass Name="Android_NotificationIcon36">
  443. <Platform Name="Android">
  444. <RemoteDir>res\drawable-hdpi</RemoteDir>
  445. <Operation>1</Operation>
  446. </Platform>
  447. </DeployClass>
  448. <DeployClass Name="Android_NotificationIcon48">
  449. <Platform Name="Android">
  450. <RemoteDir>res\drawable-xhdpi</RemoteDir>
  451. <Operation>1</Operation>
  452. </Platform>
  453. </DeployClass>
  454. <DeployClass Name="Android_NotificationIcon72">
  455. <Platform Name="Android">
  456. <RemoteDir>res\drawable-xxhdpi</RemoteDir>
  457. <Operation>1</Operation>
  458. </Platform>
  459. </DeployClass>
  460. <DeployClass Name="Android_NotificationIcon96">
  461. <Platform Name="Android">
  462. <RemoteDir>res\drawable-xxxhdpi</RemoteDir>
  463. <Operation>1</Operation>
  464. </Platform>
  465. </DeployClass>
  466. <DeployClass Name="Android_SplashImage426">
  467. <Platform Name="Android">
  468. <RemoteDir>res\drawable-small</RemoteDir>
  469. <Operation>1</Operation>
  470. </Platform>
  471. </DeployClass>
  472. <DeployClass Name="Android_SplashImage470">
  473. <Platform Name="Android">
  474. <RemoteDir>res\drawable-normal</RemoteDir>
  475. <Operation>1</Operation>
  476. </Platform>
  477. </DeployClass>
  478. <DeployClass Name="Android_SplashImage640">
  479. <Platform Name="Android">
  480. <RemoteDir>res\drawable-large</RemoteDir>
  481. <Operation>1</Operation>
  482. </Platform>
  483. </DeployClass>
  484. <DeployClass Name="Android_SplashImage960">
  485. <Platform Name="Android">
  486. <RemoteDir>res\drawable-xlarge</RemoteDir>
  487. <Operation>1</Operation>
  488. </Platform>
  489. </DeployClass>
  490. <DeployClass Name="Android_Strings">
  491. <Platform Name="Android">
  492. <RemoteDir>res\values</RemoteDir>
  493. <Operation>1</Operation>
  494. </Platform>
  495. </DeployClass>
  496. <DeployClass Name="DebugSymbols">
  497. <Platform Name="iOSSimulator">
  498. <Operation>1</Operation>
  499. </Platform>
  500. <Platform Name="OSX32">
  501. <RemoteDir>Contents\MacOS</RemoteDir>
  502. <Operation>1</Operation>
  503. </Platform>
  504. <Platform Name="Win32">
  505. <Operation>0</Operation>
  506. </Platform>
  507. </DeployClass>
  508. <DeployClass Name="DependencyFramework">
  509. <Platform Name="OSX32">
  510. <RemoteDir>Contents\MacOS</RemoteDir>
  511. <Operation>1</Operation>
  512. <Extensions>.framework</Extensions>
  513. </Platform>
  514. <Platform Name="OSX64">
  515. <RemoteDir>Contents\MacOS</RemoteDir>
  516. <Operation>1</Operation>
  517. <Extensions>.framework</Extensions>
  518. </Platform>
  519. <Platform Name="Win32">
  520. <Operation>0</Operation>
  521. </Platform>
  522. </DeployClass>
  523. <DeployClass Name="DependencyModule">
  524. <Platform Name="iOSDevice32">
  525. <Operation>1</Operation>
  526. <Extensions>.dylib</Extensions>
  527. </Platform>
  528. <Platform Name="iOSDevice64">
  529. <Operation>1</Operation>
  530. <Extensions>.dylib</Extensions>
  531. </Platform>
  532. <Platform Name="iOSSimulator">
  533. <Operation>1</Operation>
  534. <Extensions>.dylib</Extensions>
  535. </Platform>
  536. <Platform Name="OSX32">
  537. <RemoteDir>Contents\MacOS</RemoteDir>
  538. <Operation>1</Operation>
  539. <Extensions>.dylib</Extensions>
  540. </Platform>
  541. <Platform Name="OSX64">
  542. <RemoteDir>Contents\MacOS</RemoteDir>
  543. <Operation>1</Operation>
  544. <Extensions>.dylib</Extensions>
  545. </Platform>
  546. <Platform Name="Win32">
  547. <Operation>0</Operation>
  548. <Extensions>.dll;.bpl</Extensions>
  549. </Platform>
  550. </DeployClass>
  551. <DeployClass Required="true" Name="DependencyPackage">
  552. <Platform Name="iOSDevice32">
  553. <Operation>1</Operation>
  554. <Extensions>.dylib</Extensions>
  555. </Platform>
  556. <Platform Name="iOSDevice64">
  557. <Operation>1</Operation>
  558. <Extensions>.dylib</Extensions>
  559. </Platform>
  560. <Platform Name="iOSSimulator">
  561. <Operation>1</Operation>
  562. <Extensions>.dylib</Extensions>
  563. </Platform>
  564. <Platform Name="OSX32">
  565. <RemoteDir>Contents\MacOS</RemoteDir>
  566. <Operation>1</Operation>
  567. <Extensions>.dylib</Extensions>
  568. </Platform>
  569. <Platform Name="OSX64">
  570. <RemoteDir>Contents\MacOS</RemoteDir>
  571. <Operation>1</Operation>
  572. <Extensions>.dylib</Extensions>
  573. </Platform>
  574. <Platform Name="Win32">
  575. <Operation>0</Operation>
  576. <Extensions>.bpl</Extensions>
  577. </Platform>
  578. </DeployClass>
  579. <DeployClass Name="File">
  580. <Platform Name="Android">
  581. <Operation>0</Operation>
  582. </Platform>
  583. <Platform Name="iOSDevice32">
  584. <Operation>0</Operation>
  585. </Platform>
  586. <Platform Name="iOSDevice64">
  587. <Operation>0</Operation>
  588. </Platform>
  589. <Platform Name="iOSSimulator">
  590. <Operation>0</Operation>
  591. </Platform>
  592. <Platform Name="OSX32">
  593. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  594. <Operation>0</Operation>
  595. </Platform>
  596. <Platform Name="OSX64">
  597. <RemoteDir>Contents\Resources\StartUp\</RemoteDir>
  598. <Operation>0</Operation>
  599. </Platform>
  600. <Platform Name="Win32">
  601. <Operation>0</Operation>
  602. </Platform>
  603. </DeployClass>
  604. <DeployClass Name="iPad_Launch1024x768">
  605. <Platform Name="iOSDevice32">
  606. <Operation>1</Operation>
  607. </Platform>
  608. <Platform Name="iOSDevice64">
  609. <Operation>1</Operation>
  610. </Platform>
  611. <Platform Name="iOSSimulator">
  612. <Operation>1</Operation>
  613. </Platform>
  614. </DeployClass>
  615. <DeployClass Name="iPad_Launch1536x2048">
  616. <Platform Name="iOSDevice32">
  617. <Operation>1</Operation>
  618. </Platform>
  619. <Platform Name="iOSDevice64">
  620. <Operation>1</Operation>
  621. </Platform>
  622. <Platform Name="iOSSimulator">
  623. <Operation>1</Operation>
  624. </Platform>
  625. </DeployClass>
  626. <DeployClass Name="iPad_Launch1668">
  627. <Platform Name="iOSDevice32">
  628. <Operation>1</Operation>
  629. </Platform>
  630. <Platform Name="iOSDevice64">
  631. <Operation>1</Operation>
  632. </Platform>
  633. <Platform Name="iOSSimulator">
  634. <Operation>1</Operation>
  635. </Platform>
  636. </DeployClass>
  637. <DeployClass Name="iPad_Launch1668x2388">
  638. <Platform Name="iOSDevice32">
  639. <Operation>1</Operation>
  640. </Platform>
  641. <Platform Name="iOSDevice64">
  642. <Operation>1</Operation>
  643. </Platform>
  644. <Platform Name="iOSSimulator">
  645. <Operation>1</Operation>
  646. </Platform>
  647. </DeployClass>
  648. <DeployClass Name="iPad_Launch2048x1536">
  649. <Platform Name="iOSDevice32">
  650. <Operation>1</Operation>
  651. </Platform>
  652. <Platform Name="iOSDevice64">
  653. <Operation>1</Operation>
  654. </Platform>
  655. <Platform Name="iOSSimulator">
  656. <Operation>1</Operation>
  657. </Platform>
  658. </DeployClass>
  659. <DeployClass Name="iPad_Launch2048x2732">
  660. <Platform Name="iOSDevice32">
  661. <Operation>1</Operation>
  662. </Platform>
  663. <Platform Name="iOSDevice64">
  664. <Operation>1</Operation>
  665. </Platform>
  666. <Platform Name="iOSSimulator">
  667. <Operation>1</Operation>
  668. </Platform>
  669. </DeployClass>
  670. <DeployClass Name="iPad_Launch2224">
  671. <Platform Name="iOSDevice32">
  672. <Operation>1</Operation>
  673. </Platform>
  674. <Platform Name="iOSDevice64">
  675. <Operation>1</Operation>
  676. </Platform>
  677. <Platform Name="iOSSimulator">
  678. <Operation>1</Operation>
  679. </Platform>
  680. </DeployClass>
  681. <DeployClass Name="iPad_Launch2388x1668">
  682. <Platform Name="iOSDevice32">
  683. <Operation>1</Operation>
  684. </Platform>
  685. <Platform Name="iOSDevice64">
  686. <Operation>1</Operation>
  687. </Platform>
  688. <Platform Name="iOSSimulator">
  689. <Operation>1</Operation>
  690. </Platform>
  691. </DeployClass>
  692. <DeployClass Name="iPad_Launch2732x2048">
  693. <Platform Name="iOSDevice32">
  694. <Operation>1</Operation>
  695. </Platform>
  696. <Platform Name="iOSDevice64">
  697. <Operation>1</Operation>
  698. </Platform>
  699. <Platform Name="iOSSimulator">
  700. <Operation>1</Operation>
  701. </Platform>
  702. </DeployClass>
  703. <DeployClass Name="iPad_Launch768x1024">
  704. <Platform Name="iOSDevice32">
  705. <Operation>1</Operation>
  706. </Platform>
  707. <Platform Name="iOSDevice64">
  708. <Operation>1</Operation>
  709. </Platform>
  710. <Platform Name="iOSSimulator">
  711. <Operation>1</Operation>
  712. </Platform>
  713. </DeployClass>
  714. <DeployClass Name="iPhone_Launch1125">
  715. <Platform Name="iOSDevice32">
  716. <Operation>1</Operation>
  717. </Platform>
  718. <Platform Name="iOSDevice64">
  719. <Operation>1</Operation>
  720. </Platform>
  721. <Platform Name="iOSSimulator">
  722. <Operation>1</Operation>
  723. </Platform>
  724. </DeployClass>
  725. <DeployClass Name="iPhone_Launch1136x640">
  726. <Platform Name="iOSDevice32">
  727. <Operation>1</Operation>
  728. </Platform>
  729. <Platform Name="iOSDevice64">
  730. <Operation>1</Operation>
  731. </Platform>
  732. <Platform Name="iOSSimulator">
  733. <Operation>1</Operation>
  734. </Platform>
  735. </DeployClass>
  736. <DeployClass Name="iPhone_Launch1242">
  737. <Platform Name="iOSDevice32">
  738. <Operation>1</Operation>
  739. </Platform>
  740. <Platform Name="iOSDevice64">
  741. <Operation>1</Operation>
  742. </Platform>
  743. <Platform Name="iOSSimulator">
  744. <Operation>1</Operation>
  745. </Platform>
  746. </DeployClass>
  747. <DeployClass Name="iPhone_Launch1242x2688">
  748. <Platform Name="iOSDevice32">
  749. <Operation>1</Operation>
  750. </Platform>
  751. <Platform Name="iOSDevice64">
  752. <Operation>1</Operation>
  753. </Platform>
  754. <Platform Name="iOSSimulator">
  755. <Operation>1</Operation>
  756. </Platform>
  757. </DeployClass>
  758. <DeployClass Name="iPhone_Launch1334">
  759. <Platform Name="iOSDevice32">
  760. <Operation>1</Operation>
  761. </Platform>
  762. <Platform Name="iOSDevice64">
  763. <Operation>1</Operation>
  764. </Platform>
  765. <Platform Name="iOSSimulator">
  766. <Operation>1</Operation>
  767. </Platform>
  768. </DeployClass>
  769. <DeployClass Name="iPhone_Launch1792">
  770. <Platform Name="iOSDevice32">
  771. <Operation>1</Operation>
  772. </Platform>
  773. <Platform Name="iOSDevice64">
  774. <Operation>1</Operation>
  775. </Platform>
  776. <Platform Name="iOSSimulator">
  777. <Operation>1</Operation>
  778. </Platform>
  779. </DeployClass>
  780. <DeployClass Name="iPhone_Launch2208">
  781. <Platform Name="iOSDevice32">
  782. <Operation>1</Operation>
  783. </Platform>
  784. <Platform Name="iOSDevice64">
  785. <Operation>1</Operation>
  786. </Platform>
  787. <Platform Name="iOSSimulator">
  788. <Operation>1</Operation>
  789. </Platform>
  790. </DeployClass>
  791. <DeployClass Name="iPhone_Launch2436">
  792. <Platform Name="iOSDevice32">
  793. <Operation>1</Operation>
  794. </Platform>
  795. <Platform Name="iOSDevice64">
  796. <Operation>1</Operation>
  797. </Platform>
  798. <Platform Name="iOSSimulator">
  799. <Operation>1</Operation>
  800. </Platform>
  801. </DeployClass>
  802. <DeployClass Name="iPhone_Launch2688x1242">
  803. <Platform Name="iOSDevice32">
  804. <Operation>1</Operation>
  805. </Platform>
  806. <Platform Name="iOSDevice64">
  807. <Operation>1</Operation>
  808. </Platform>
  809. <Platform Name="iOSSimulator">
  810. <Operation>1</Operation>
  811. </Platform>
  812. </DeployClass>
  813. <DeployClass Name="iPhone_Launch320">
  814. <Platform Name="iOSDevice32">
  815. <Operation>1</Operation>
  816. </Platform>
  817. <Platform Name="iOSDevice64">
  818. <Operation>1</Operation>
  819. </Platform>
  820. <Platform Name="iOSSimulator">
  821. <Operation>1</Operation>
  822. </Platform>
  823. </DeployClass>
  824. <DeployClass Name="iPhone_Launch640">
  825. <Platform Name="iOSDevice32">
  826. <Operation>1</Operation>
  827. </Platform>
  828. <Platform Name="iOSDevice64">
  829. <Operation>1</Operation>
  830. </Platform>
  831. <Platform Name="iOSSimulator">
  832. <Operation>1</Operation>
  833. </Platform>
  834. </DeployClass>
  835. <DeployClass Name="iPhone_Launch640x1136">
  836. <Platform Name="iOSDevice32">
  837. <Operation>1</Operation>
  838. </Platform>
  839. <Platform Name="iOSDevice64">
  840. <Operation>1</Operation>
  841. </Platform>
  842. <Platform Name="iOSSimulator">
  843. <Operation>1</Operation>
  844. </Platform>
  845. </DeployClass>
  846. <DeployClass Name="iPhone_Launch750">
  847. <Platform Name="iOSDevice32">
  848. <Operation>1</Operation>
  849. </Platform>
  850. <Platform Name="iOSDevice64">
  851. <Operation>1</Operation>
  852. </Platform>
  853. <Platform Name="iOSSimulator">
  854. <Operation>1</Operation>
  855. </Platform>
  856. </DeployClass>
  857. <DeployClass Name="iPhone_Launch828">
  858. <Platform Name="iOSDevice32">
  859. <Operation>1</Operation>
  860. </Platform>
  861. <Platform Name="iOSDevice64">
  862. <Operation>1</Operation>
  863. </Platform>
  864. <Platform Name="iOSSimulator">
  865. <Operation>1</Operation>
  866. </Platform>
  867. </DeployClass>
  868. <DeployClass Name="ProjectAndroidManifest">
  869. <Platform Name="Android">
  870. <Operation>1</Operation>
  871. </Platform>
  872. </DeployClass>
  873. <DeployClass Name="ProjectiOSDeviceDebug">
  874. <Platform Name="iOSDevice32">
  875. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  876. <Operation>1</Operation>
  877. </Platform>
  878. <Platform Name="iOSDevice64">
  879. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  880. <Operation>1</Operation>
  881. </Platform>
  882. </DeployClass>
  883. <DeployClass Name="ProjectiOSDeviceResourceRules">
  884. <Platform Name="iOSDevice32">
  885. <Operation>1</Operation>
  886. </Platform>
  887. <Platform Name="iOSDevice64">
  888. <Operation>1</Operation>
  889. </Platform>
  890. </DeployClass>
  891. <DeployClass Name="ProjectiOSEntitlements">
  892. <Platform Name="iOSDevice32">
  893. <RemoteDir>..\</RemoteDir>
  894. <Operation>1</Operation>
  895. </Platform>
  896. <Platform Name="iOSDevice64">
  897. <RemoteDir>..\</RemoteDir>
  898. <Operation>1</Operation>
  899. </Platform>
  900. </DeployClass>
  901. <DeployClass Name="ProjectiOSInfoPList">
  902. <Platform Name="iOSDevice32">
  903. <Operation>1</Operation>
  904. </Platform>
  905. <Platform Name="iOSDevice64">
  906. <Operation>1</Operation>
  907. </Platform>
  908. <Platform Name="iOSSimulator">
  909. <Operation>1</Operation>
  910. </Platform>
  911. </DeployClass>
  912. <DeployClass Name="ProjectiOSResource">
  913. <Platform Name="iOSDevice32">
  914. <Operation>1</Operation>
  915. </Platform>
  916. <Platform Name="iOSDevice64">
  917. <Operation>1</Operation>
  918. </Platform>
  919. <Platform Name="iOSSimulator">
  920. <Operation>1</Operation>
  921. </Platform>
  922. </DeployClass>
  923. <DeployClass Name="ProjectOSXDebug">
  924. <Platform Name="OSX64">
  925. <RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
  926. <Operation>1</Operation>
  927. </Platform>
  928. </DeployClass>
  929. <DeployClass Name="ProjectOSXEntitlements">
  930. <Platform Name="OSX32">
  931. <RemoteDir>..\</RemoteDir>
  932. <Operation>1</Operation>
  933. </Platform>
  934. <Platform Name="OSX64">
  935. <RemoteDir>..\</RemoteDir>
  936. <Operation>1</Operation>
  937. </Platform>
  938. </DeployClass>
  939. <DeployClass Name="ProjectOSXInfoPList">
  940. <Platform Name="OSX32">
  941. <RemoteDir>Contents</RemoteDir>
  942. <Operation>1</Operation>
  943. </Platform>
  944. <Platform Name="OSX64">
  945. <RemoteDir>Contents</RemoteDir>
  946. <Operation>1</Operation>
  947. </Platform>
  948. </DeployClass>
  949. <DeployClass Name="ProjectOSXResource">
  950. <Platform Name="OSX32">
  951. <RemoteDir>Contents\Resources</RemoteDir>
  952. <Operation>1</Operation>
  953. </Platform>
  954. <Platform Name="OSX64">
  955. <RemoteDir>Contents\Resources</RemoteDir>
  956. <Operation>1</Operation>
  957. </Platform>
  958. </DeployClass>
  959. <DeployClass Required="true" Name="ProjectOutput">
  960. <Platform Name="Android">
  961. <RemoteDir>library\lib\armeabi-v7a</RemoteDir>
  962. <Operation>1</Operation>
  963. </Platform>
  964. <Platform Name="iOSDevice32">
  965. <Operation>1</Operation>
  966. </Platform>
  967. <Platform Name="iOSDevice64">
  968. <Operation>1</Operation>
  969. </Platform>
  970. <Platform Name="iOSSimulator">
  971. <Operation>1</Operation>
  972. </Platform>
  973. <Platform Name="Linux64">
  974. <Operation>1</Operation>
  975. </Platform>
  976. <Platform Name="OSX32">
  977. <RemoteDir>Contents\MacOS</RemoteDir>
  978. <Operation>1</Operation>
  979. </Platform>
  980. <Platform Name="OSX64">
  981. <RemoteDir>Contents\MacOS</RemoteDir>
  982. <Operation>1</Operation>
  983. </Platform>
  984. <Platform Name="Win32">
  985. <Operation>0</Operation>
  986. </Platform>
  987. </DeployClass>
  988. <DeployClass Name="ProjectUWPManifest">
  989. <Platform Name="Win32">
  990. <Operation>1</Operation>
  991. </Platform>
  992. <Platform Name="Win64">
  993. <Operation>1</Operation>
  994. </Platform>
  995. </DeployClass>
  996. <DeployClass Name="UWP_CppLogo150">
  997. <Platform Name="Win32">
  998. <RemoteDir>Assets</RemoteDir>
  999. <Operation>1</Operation>
  1000. </Platform>
  1001. <Platform Name="Win64">
  1002. <RemoteDir>Assets</RemoteDir>
  1003. <Operation>1</Operation>
  1004. </Platform>
  1005. </DeployClass>
  1006. <DeployClass Name="UWP_CppLogo44">
  1007. <Platform Name="Win32">
  1008. <RemoteDir>Assets</RemoteDir>
  1009. <Operation>1</Operation>
  1010. </Platform>
  1011. <Platform Name="Win64">
  1012. <RemoteDir>Assets</RemoteDir>
  1013. <Operation>1</Operation>
  1014. </Platform>
  1015. </DeployClass>
  1016. <ProjectRoot Platform="iOSDevice64" Name="$(PROJECTNAME).app"/>
  1017. <ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
  1018. <ProjectRoot Platform="iOSDevice32" Name="$(PROJECTNAME).app"/>
  1019. <ProjectRoot Platform="Linux64" Name="$(PROJECTNAME)"/>
  1020. <ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
  1021. <ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
  1022. <ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
  1023. <ProjectRoot Platform="OSX64" Name="$(PROJECTNAME).app"/>
  1024. <ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
  1025. </Deployment>
  1026. </BorlandProject>
  1027. <ProjectFileVersion>12</ProjectFileVersion>
  1028. </ProjectExtensions>
  1029. <Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
  1030. <Import Project="$(BDS)\Bin\CodeGear.Cpp.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Cpp.Targets')"/>
  1031. <Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
  1032. </Project>