delphi-compiler 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/delphi-compiler.gemspec +36 -0
- data/lib/delphi.rb +9 -0
- data/lib/delphi/compiler.rb +92 -0
- data/lib/delphi/dsl.rb +63 -0
- data/lib/delphi/environment.rb +66 -0
- data/lib/delphi/groupproj.rb +87 -0
- data/lib/delphi/project.rb +128 -0
- data/lib/delphi/resource.rb +29 -0
- data/lib/delphi/versions.rb +84 -0
- data/rakefile.rb +55 -0
- data/test/MyClass.pas +20 -0
- data/test/Test/TestMyClass.pas +53 -0
- data/test/Test/testTests.dpr +27 -0
- data/test/Test/testTests.dproj +485 -0
- data/test/Test/testTests.res +0 -0
- data/test/TestGroup.groupproj +48 -0
- data/test/test.dpr +18 -0
- data/test/test.dproj +511 -0
- data/test/test.res +0 -0
- data/test/test_project.rb +45 -0
- data/version.rb +3 -0
- metadata +64 -0
Binary file
|
@@ -0,0 +1,48 @@
|
|
1
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2
|
+
<PropertyGroup>
|
3
|
+
<ProjectGuid>{18F4D98C-61E9-48CE-9959-B0F97C6CFCB9}</ProjectGuid>
|
4
|
+
</PropertyGroup>
|
5
|
+
<ItemGroup>
|
6
|
+
<Projects Include="test.dproj">
|
7
|
+
<Dependencies/>
|
8
|
+
</Projects>
|
9
|
+
<Projects Include="Test\testTests.dproj">
|
10
|
+
<Dependencies/>
|
11
|
+
</Projects>
|
12
|
+
</ItemGroup>
|
13
|
+
<ProjectExtensions>
|
14
|
+
<Borland.Personality>Default.Personality.12</Borland.Personality>
|
15
|
+
<Borland.ProjectType/>
|
16
|
+
<BorlandProject>
|
17
|
+
<Default.Personality/>
|
18
|
+
</BorlandProject>
|
19
|
+
</ProjectExtensions>
|
20
|
+
<Target Name="test">
|
21
|
+
<MSBuild Projects="test.dproj"/>
|
22
|
+
</Target>
|
23
|
+
<Target Name="test:Clean">
|
24
|
+
<MSBuild Projects="test.dproj" Targets="Clean"/>
|
25
|
+
</Target>
|
26
|
+
<Target Name="test:Make">
|
27
|
+
<MSBuild Projects="test.dproj" Targets="Make"/>
|
28
|
+
</Target>
|
29
|
+
<Target Name="testTests">
|
30
|
+
<MSBuild Projects="Test\testTests.dproj"/>
|
31
|
+
</Target>
|
32
|
+
<Target Name="testTests:Clean">
|
33
|
+
<MSBuild Projects="Test\testTests.dproj" Targets="Clean"/>
|
34
|
+
</Target>
|
35
|
+
<Target Name="testTests:Make">
|
36
|
+
<MSBuild Projects="Test\testTests.dproj" Targets="Make"/>
|
37
|
+
</Target>
|
38
|
+
<Target Name="Build">
|
39
|
+
<CallTarget Targets="test;testTests"/>
|
40
|
+
</Target>
|
41
|
+
<Target Name="Clean">
|
42
|
+
<CallTarget Targets="test:Clean;testTests:Clean"/>
|
43
|
+
</Target>
|
44
|
+
<Target Name="Make">
|
45
|
+
<CallTarget Targets="test:Make;testTests:Make"/>
|
46
|
+
</Target>
|
47
|
+
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
|
48
|
+
</Project>
|
data/test/test.dpr
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
program test;
|
2
|
+
|
3
|
+
{$APPTYPE CONSOLE}
|
4
|
+
|
5
|
+
{$R *.res}
|
6
|
+
|
7
|
+
uses
|
8
|
+
System.SysUtils,
|
9
|
+
MyClass in 'MyClass.pas';
|
10
|
+
|
11
|
+
begin
|
12
|
+
try
|
13
|
+
{ TODO -oUser -cConsole Main : Insert code here }
|
14
|
+
except
|
15
|
+
on E: Exception do
|
16
|
+
Writeln(E.ClassName, ': ', E.Message);
|
17
|
+
end;
|
18
|
+
end.
|
data/test/test.dproj
ADDED
@@ -0,0 +1,511 @@
|
|
1
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2
|
+
<PropertyGroup>
|
3
|
+
<ProjectGuid>{D2291E58-4A1F-48B4-9304-B9D39E066E46}</ProjectGuid>
|
4
|
+
<ProjectVersion>16.0</ProjectVersion>
|
5
|
+
<FrameworkType>None</FrameworkType>
|
6
|
+
<MainSource>test.dpr</MainSource>
|
7
|
+
<Base>True</Base>
|
8
|
+
<Config Condition="'$(Config)'==''">Debug</Config>
|
9
|
+
<Platform Condition="'$(Platform)'==''">Win32</Platform>
|
10
|
+
<TargetedPlatforms>1</TargetedPlatforms>
|
11
|
+
<AppType>Console</AppType>
|
12
|
+
</PropertyGroup>
|
13
|
+
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
14
|
+
<Base>true</Base>
|
15
|
+
</PropertyGroup>
|
16
|
+
<PropertyGroup Condition="('$(Platform)'=='Android' and '$(Base)'=='true') or '$(Base_Android)'!=''">
|
17
|
+
<Base_Android>true</Base_Android>
|
18
|
+
<CfgParent>Base</CfgParent>
|
19
|
+
<Base>true</Base>
|
20
|
+
</PropertyGroup>
|
21
|
+
<PropertyGroup Condition="('$(Platform)'=='iOSDevice' and '$(Base)'=='true') or '$(Base_iOSDevice)'!=''">
|
22
|
+
<Base_iOSDevice>true</Base_iOSDevice>
|
23
|
+
<CfgParent>Base</CfgParent>
|
24
|
+
<Base>true</Base>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="('$(Platform)'=='iOSSimulator' and '$(Base)'=='true') or '$(Base_iOSSimulator)'!=''">
|
27
|
+
<Base_iOSSimulator>true</Base_iOSSimulator>
|
28
|
+
<CfgParent>Base</CfgParent>
|
29
|
+
<Base>true</Base>
|
30
|
+
</PropertyGroup>
|
31
|
+
<PropertyGroup Condition="('$(Platform)'=='OSX32' and '$(Base)'=='true') or '$(Base_OSX32)'!=''">
|
32
|
+
<Base_OSX32>true</Base_OSX32>
|
33
|
+
<CfgParent>Base</CfgParent>
|
34
|
+
<Base>true</Base>
|
35
|
+
</PropertyGroup>
|
36
|
+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
|
37
|
+
<Base_Win32>true</Base_Win32>
|
38
|
+
<CfgParent>Base</CfgParent>
|
39
|
+
<Base>true</Base>
|
40
|
+
</PropertyGroup>
|
41
|
+
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
|
42
|
+
<Base_Win64>true</Base_Win64>
|
43
|
+
<CfgParent>Base</CfgParent>
|
44
|
+
<Base>true</Base>
|
45
|
+
</PropertyGroup>
|
46
|
+
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
|
47
|
+
<Cfg_1>true</Cfg_1>
|
48
|
+
<CfgParent>Base</CfgParent>
|
49
|
+
<Base>true</Base>
|
50
|
+
</PropertyGroup>
|
51
|
+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
|
52
|
+
<Cfg_1_Win32>true</Cfg_1_Win32>
|
53
|
+
<CfgParent>Cfg_1</CfgParent>
|
54
|
+
<Cfg_1>true</Cfg_1>
|
55
|
+
<Base>true</Base>
|
56
|
+
</PropertyGroup>
|
57
|
+
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
|
58
|
+
<Cfg_2>true</Cfg_2>
|
59
|
+
<CfgParent>Base</CfgParent>
|
60
|
+
<Base>true</Base>
|
61
|
+
</PropertyGroup>
|
62
|
+
<PropertyGroup Condition="'$(Base)'!=''">
|
63
|
+
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace>
|
64
|
+
<SanitizedProjectName>test</SanitizedProjectName>
|
65
|
+
<DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
|
66
|
+
<DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
|
67
|
+
<DCC_E>false</DCC_E>
|
68
|
+
<DCC_N>false</DCC_N>
|
69
|
+
<DCC_S>false</DCC_S>
|
70
|
+
<DCC_F>false</DCC_F>
|
71
|
+
<DCC_K>false</DCC_K>
|
72
|
+
</PropertyGroup>
|
73
|
+
<PropertyGroup Condition="'$(Base_Android)'!=''">
|
74
|
+
<Android_LauncherIcon96>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_96x96.png</Android_LauncherIcon96>
|
75
|
+
<DCC_UsePackage>FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;fmx;IndySystem;tethering;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DataSnapProviderClient;DbxCommonDriver;dbxcds;fmxFireDAC;CustomIPTransport;dsnap;IndyIPServer;IndyCore;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;DataSnapFireDAC;FireDACDBXDriver;soapserver;dsnapxml;bindcompfmx;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;xmlrtl;DataSnapNativeClient;ibxpress;IndyProtocols;FireDACCommonDriver;bindengine;bindcompdbx;soaprtl;FMXTee;emsclient;FireDAC;inet;soapmidas;RESTComponents;dbexpress;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
76
|
+
<Android_SplashImage640>$(BDS)\bin\Artwork\Android\FM_SplashImage_640x480.png</Android_SplashImage640>
|
77
|
+
<Android_SplashImage426>$(BDS)\bin\Artwork\Android\FM_SplashImage_426x320.png</Android_SplashImage426>
|
78
|
+
<Android_LauncherIcon144>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_144x144.png</Android_LauncherIcon144>
|
79
|
+
<Android_LauncherIcon72>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_72x72.png</Android_LauncherIcon72>
|
80
|
+
<Android_SplashImage960>$(BDS)\bin\Artwork\Android\FM_SplashImage_960x720.png</Android_SplashImage960>
|
81
|
+
<Android_SplashImage470>$(BDS)\bin\Artwork\Android\FM_SplashImage_470x320.png</Android_SplashImage470>
|
82
|
+
<Android_LauncherIcon36>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_36x36.png</Android_LauncherIcon36>
|
83
|
+
<Android_LauncherIcon48>$(BDS)\bin\Artwork\Android\FM_LauncherIcon_48x48.png</Android_LauncherIcon48>
|
84
|
+
</PropertyGroup>
|
85
|
+
<PropertyGroup Condition="'$(Base_iOSDevice)'!=''">
|
86
|
+
<DCC_UsePackage>FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;fmx;IndySystem;tethering;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DataSnapProviderClient;DbxCommonDriver;dbxcds;fmxFireDAC;CustomIPTransport;dsnap;IndyIPServer;fmxase;IndyCore;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;DataSnapFireDAC;FireDACDBXDriver;soapserver;dsnapxml;bindcompfmx;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;xmlrtl;DataSnapNativeClient;ibxpress;IndyProtocols;FireDACCommonDriver;bindengine;bindcompdbx;soaprtl;FMXTee;emsclient;FireDAC;inet;soapmidas;RESTComponents;dbexpress;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
87
|
+
</PropertyGroup>
|
88
|
+
<PropertyGroup Condition="'$(Base_iOSSimulator)'!=''">
|
89
|
+
<DCC_UsePackage>FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;fmx;IndySystem;tethering;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DataSnapProviderClient;DbxCommonDriver;dbxcds;fmxFireDAC;CustomIPTransport;dsnap;IndyIPServer;fmxase;IndyCore;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;DataSnapFireDAC;FireDACDBXDriver;soapserver;dsnapxml;bindcompfmx;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;xmlrtl;DataSnapNativeClient;ibxpress;IndyProtocols;FireDACCommonDriver;bindengine;bindcompdbx;soaprtl;FMXTee;emsclient;FireDAC;inet;soapmidas;RESTComponents;dbexpress;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
90
|
+
</PropertyGroup>
|
91
|
+
<PropertyGroup Condition="'$(Base_OSX32)'!=''">
|
92
|
+
<DCC_ConsoleTarget>true</DCC_ConsoleTarget>
|
93
|
+
<DCC_UsePackage>FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;FireDACPgDriver;fmx;IndySystem;tethering;DBXInterBaseDriver;DataSnapClient;DataSnapServer;DataSnapCommon;DataSnapProviderClient;DbxCommonDriver;dbxcds;fmxFireDAC;DBXOracleDriver;CustomIPTransport;dsnap;IndyIPServer;fmxase;IndyCore;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;DataSnapFireDAC;FireDACDBXDriver;soapserver;inetdbxpress;dsnapxml;FireDACASADriver;bindcompfmx;FireDACODBCDriver;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;inetdb;xmlrtl;DataSnapNativeClient;ibxpress;IndyProtocols;DBXMySQLDriver;FireDACCommonDriver;bindengine;bindcompdbx;soaprtl;FMXTee;emsclient;FireDACMSSQLDriver;FireDAC;DBXInformixDriver;DataSnapServerMidas;DBXFirebirdDriver;inet;fmxobj;FireDACMySQLDriver;soapmidas;DBXSybaseASADriver;FireDACOracleDriver;fmxdae;RESTComponents;dbexpress;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
94
|
+
</PropertyGroup>
|
95
|
+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
|
96
|
+
<DCC_UsePackage>FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;FireDACPgDriver;fmx;IndySystem;frxe21;TeeDB;tethering;vclib;DBXInterBaseDriver;DataSnapClient;DataSnapServer;DataSnapCommon;frx21;DataSnapProviderClient;DBXSybaseASEDriver;DbxCommonDriver;vclimg;dbxcds;DatasnapConnectorsFreePascal;MetropolisUILiveTile;vcldb;vcldsnap;fmxFireDAC;DBXDb2Driver;DBXOracleDriver;CustomIPTransport;vclribbon;dsnap;IndyIPServer;fmxase;vcl;IndyCore;WebExpert10;DBXMSSQLDriver;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;CodeSiteExpressPkg;DataSnapFireDAC;FireDACDBXDriver;soapserver;inetdbxpress;dsnapxml;FireDACInfxDriver;FireDACDb2Driver;adortl;FireDACASADriver;bindcompfmx;FireDACODBCDriver;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;inetdb;frxTee21;Tee;DBXOdbcDriver;frxDB21;vclFireDAC;xmlrtl;DataSnapNativeClient;svnui;ibxpress;IndyProtocols;DBXMySQLDriver;FireDACCommonDriver;bindengine;vclactnband;bindcompdbx;soaprtl;FMXTee;TeeUI;bindcompvcl;vclie;FireDACADSDriver;vcltouch;emsclient;VCLRESTComponents;FireDACMSSQLDriver;FireDAC;VclSmp;DBXInformixDriver;Intraweb;DataSnapConnectors;DataSnapServerMidas;dsnapcon;DBXFirebirdDriver;inet;fmxobj;FireDACMySQLDriver;soapmidas;vclx;svn;DBXSybaseASADriver;FireDACOracleDriver;fmxdae;RESTComponents;FireDACMSAccDriver;dbexpress;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
97
|
+
<DCC_ConsoleTarget>true</DCC_ConsoleTarget>
|
98
|
+
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
|
99
|
+
<VerInfo_Locale>1033</VerInfo_Locale>
|
100
|
+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
|
101
|
+
</PropertyGroup>
|
102
|
+
<PropertyGroup Condition="'$(Base_Win64)'!=''">
|
103
|
+
<DCC_ConsoleTarget>true</DCC_ConsoleTarget>
|
104
|
+
<DCC_UsePackage>FireDACSqliteDriver;FireDACDSDriver;DBXSqliteDriver;FireDACPgDriver;fmx;IndySystem;TeeDB;tethering;vclib;DBXInterBaseDriver;DataSnapClient;DataSnapServer;DataSnapCommon;DataSnapProviderClient;DBXSybaseASEDriver;DbxCommonDriver;vclimg;dbxcds;DatasnapConnectorsFreePascal;MetropolisUILiveTile;vcldb;vcldsnap;fmxFireDAC;DBXDb2Driver;DBXOracleDriver;CustomIPTransport;vclribbon;dsnap;IndyIPServer;fmxase;vcl;IndyCore;DBXMSSQLDriver;IndyIPCommon;CloudService;FmxTeeUI;FireDACIBDriver;DataSnapFireDAC;FireDACDBXDriver;soapserver;inetdbxpress;dsnapxml;FireDACInfxDriver;FireDACDb2Driver;adortl;FireDACASADriver;bindcompfmx;FireDACODBCDriver;RESTBackendComponents;emsclientfiredac;rtl;dbrtl;DbxClientDriver;FireDACCommon;bindcomp;inetdb;Tee;DBXOdbcDriver;vclFireDAC;xmlrtl;DataSnapNativeClient;ibxpress;IndyProtocols;DBXMySQLDriver;FireDACCommonDriver;bindengine;vclactnband;bindcompdbx;soaprtl;FMXTee;TeeUI;bindcompvcl;vclie;FireDACADSDriver;vcltouch;emsclient;VCLRESTComponents;FireDACMSSQLDriver;FireDAC;VclSmp;DBXInformixDriver;Intraweb;DataSnapConnectors;DataSnapServerMidas;dsnapcon;DBXFirebirdDriver;inet;fmxobj;FireDACMySQLDriver;soapmidas;vclx;DBXSybaseASADriver;FireDACOracleDriver;fmxdae;RESTComponents;FireDACMSAccDriver;dbexpress;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
105
|
+
</PropertyGroup>
|
106
|
+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
107
|
+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
108
|
+
<DCC_DebugDCUs>true</DCC_DebugDCUs>
|
109
|
+
<DCC_Optimize>false</DCC_Optimize>
|
110
|
+
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
111
|
+
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
|
112
|
+
<DCC_RemoteDebug>true</DCC_RemoteDebug>
|
113
|
+
</PropertyGroup>
|
114
|
+
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
|
115
|
+
<DCC_RemoteDebug>false</DCC_RemoteDebug>
|
116
|
+
</PropertyGroup>
|
117
|
+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
118
|
+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
119
|
+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
120
|
+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
121
|
+
<DCC_DebugInformation>0</DCC_DebugInformation>
|
122
|
+
</PropertyGroup>
|
123
|
+
<ItemGroup>
|
124
|
+
<DelphiCompile Include="$(MainSource)">
|
125
|
+
<MainSource>MainSource</MainSource>
|
126
|
+
</DelphiCompile>
|
127
|
+
<DCCReference Include="MyClass.pas"/>
|
128
|
+
<BuildConfiguration Include="Release">
|
129
|
+
<Key>Cfg_2</Key>
|
130
|
+
<CfgParent>Base</CfgParent>
|
131
|
+
</BuildConfiguration>
|
132
|
+
<BuildConfiguration Include="Base">
|
133
|
+
<Key>Base</Key>
|
134
|
+
</BuildConfiguration>
|
135
|
+
<BuildConfiguration Include="Debug">
|
136
|
+
<Key>Cfg_1</Key>
|
137
|
+
<CfgParent>Base</CfgParent>
|
138
|
+
</BuildConfiguration>
|
139
|
+
</ItemGroup>
|
140
|
+
<ProjectExtensions>
|
141
|
+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
142
|
+
<Borland.ProjectType>Application</Borland.ProjectType>
|
143
|
+
<BorlandProject>
|
144
|
+
<Delphi.Personality>
|
145
|
+
<Source>
|
146
|
+
<Source Name="MainSource">test.dpr</Source>
|
147
|
+
</Source>
|
148
|
+
</Delphi.Personality>
|
149
|
+
<Deployment>
|
150
|
+
<DeployFile LocalName="$(BDS)\Redist\osx32\libcgunwind.1.0.dylib" Class="DependencyModule">
|
151
|
+
<Platform Name="OSX32">
|
152
|
+
<Overwrite>true</Overwrite>
|
153
|
+
</Platform>
|
154
|
+
<Platform Name="iOSSimulator">
|
155
|
+
<Overwrite>true</Overwrite>
|
156
|
+
</Platform>
|
157
|
+
</DeployFile>
|
158
|
+
<DeployFile LocalName="Win32\Debug\test.exe" Configuration="Debug" Class="ProjectOutput">
|
159
|
+
<Platform Name="Win32">
|
160
|
+
<RemoteName>test.exe</RemoteName>
|
161
|
+
<Overwrite>true</Overwrite>
|
162
|
+
</Platform>
|
163
|
+
</DeployFile>
|
164
|
+
<DeployClass Required="true" Name="DependencyPackage">
|
165
|
+
<Platform Name="iOSDevice">
|
166
|
+
<Operation>1</Operation>
|
167
|
+
<Extensions>.dylib</Extensions>
|
168
|
+
</Platform>
|
169
|
+
<Platform Name="Win32">
|
170
|
+
<Operation>0</Operation>
|
171
|
+
<Extensions>.bpl</Extensions>
|
172
|
+
</Platform>
|
173
|
+
<Platform Name="OSX32">
|
174
|
+
<RemoteDir>Contents\MacOS</RemoteDir>
|
175
|
+
<Operation>1</Operation>
|
176
|
+
<Extensions>.dylib</Extensions>
|
177
|
+
</Platform>
|
178
|
+
<Platform Name="iOSSimulator">
|
179
|
+
<Operation>1</Operation>
|
180
|
+
<Extensions>.dylib</Extensions>
|
181
|
+
</Platform>
|
182
|
+
</DeployClass>
|
183
|
+
<DeployClass Name="DependencyModule">
|
184
|
+
<Platform Name="iOSDevice">
|
185
|
+
<Operation>1</Operation>
|
186
|
+
<Extensions>.dylib</Extensions>
|
187
|
+
</Platform>
|
188
|
+
<Platform Name="Win32">
|
189
|
+
<Operation>0</Operation>
|
190
|
+
<Extensions>.dll;.bpl</Extensions>
|
191
|
+
</Platform>
|
192
|
+
<Platform Name="OSX32">
|
193
|
+
<RemoteDir>Contents\MacOS</RemoteDir>
|
194
|
+
<Operation>1</Operation>
|
195
|
+
<Extensions>.dylib</Extensions>
|
196
|
+
</Platform>
|
197
|
+
<Platform Name="iOSSimulator">
|
198
|
+
<Operation>1</Operation>
|
199
|
+
<Extensions>.dylib</Extensions>
|
200
|
+
</Platform>
|
201
|
+
</DeployClass>
|
202
|
+
<DeployClass Name="iPad_Launch2048">
|
203
|
+
<Platform Name="iOSDevice">
|
204
|
+
<Operation>1</Operation>
|
205
|
+
</Platform>
|
206
|
+
<Platform Name="iOSSimulator">
|
207
|
+
<Operation>1</Operation>
|
208
|
+
</Platform>
|
209
|
+
</DeployClass>
|
210
|
+
<DeployClass Name="ProjectOSXInfoPList">
|
211
|
+
<Platform Name="OSX32">
|
212
|
+
<RemoteDir>Contents</RemoteDir>
|
213
|
+
<Operation>1</Operation>
|
214
|
+
</Platform>
|
215
|
+
</DeployClass>
|
216
|
+
<DeployClass Name="ProjectiOSDeviceDebug">
|
217
|
+
<Platform Name="iOSDevice">
|
218
|
+
<RemoteDir>..\$(PROJECTNAME).app.dSYM\Contents\Resources\DWARF</RemoteDir>
|
219
|
+
<Operation>1</Operation>
|
220
|
+
</Platform>
|
221
|
+
</DeployClass>
|
222
|
+
<DeployClass Name="Android_SplashImage470">
|
223
|
+
<Platform Name="Android">
|
224
|
+
<RemoteDir>res\drawable-normal</RemoteDir>
|
225
|
+
<Operation>1</Operation>
|
226
|
+
</Platform>
|
227
|
+
</DeployClass>
|
228
|
+
<DeployClass Name="AndroidLibnativeX86File">
|
229
|
+
<Platform Name="Android">
|
230
|
+
<RemoteDir>library\lib\x86</RemoteDir>
|
231
|
+
<Operation>1</Operation>
|
232
|
+
</Platform>
|
233
|
+
</DeployClass>
|
234
|
+
<DeployClass Name="ProjectiOSResource">
|
235
|
+
<Platform Name="iOSDevice">
|
236
|
+
<Operation>1</Operation>
|
237
|
+
</Platform>
|
238
|
+
<Platform Name="iOSSimulator">
|
239
|
+
<Operation>1</Operation>
|
240
|
+
</Platform>
|
241
|
+
</DeployClass>
|
242
|
+
<DeployClass Name="ProjectOSXEntitlements">
|
243
|
+
<Platform Name="OSX32">
|
244
|
+
<RemoteDir>Contents</RemoteDir>
|
245
|
+
<Operation>1</Operation>
|
246
|
+
</Platform>
|
247
|
+
</DeployClass>
|
248
|
+
<DeployClass Name="AndroidGDBServer">
|
249
|
+
<Platform Name="Android">
|
250
|
+
<RemoteDir>library\lib\armeabi-v7a</RemoteDir>
|
251
|
+
<Operation>1</Operation>
|
252
|
+
</Platform>
|
253
|
+
</DeployClass>
|
254
|
+
<DeployClass Name="iPhone_Launch640">
|
255
|
+
<Platform Name="iOSDevice">
|
256
|
+
<Operation>1</Operation>
|
257
|
+
</Platform>
|
258
|
+
<Platform Name="iOSSimulator">
|
259
|
+
<Operation>1</Operation>
|
260
|
+
</Platform>
|
261
|
+
</DeployClass>
|
262
|
+
<DeployClass Name="Android_SplashImage960">
|
263
|
+
<Platform Name="Android">
|
264
|
+
<RemoteDir>res\drawable-xlarge</RemoteDir>
|
265
|
+
<Operation>1</Operation>
|
266
|
+
</Platform>
|
267
|
+
</DeployClass>
|
268
|
+
<DeployClass Name="Android_LauncherIcon96">
|
269
|
+
<Platform Name="Android">
|
270
|
+
<RemoteDir>res\drawable-xhdpi</RemoteDir>
|
271
|
+
<Operation>1</Operation>
|
272
|
+
</Platform>
|
273
|
+
</DeployClass>
|
274
|
+
<DeployClass Name="iPhone_Launch320">
|
275
|
+
<Platform Name="iOSDevice">
|
276
|
+
<Operation>1</Operation>
|
277
|
+
</Platform>
|
278
|
+
<Platform Name="iOSSimulator">
|
279
|
+
<Operation>1</Operation>
|
280
|
+
</Platform>
|
281
|
+
</DeployClass>
|
282
|
+
<DeployClass Name="Android_LauncherIcon144">
|
283
|
+
<Platform Name="Android">
|
284
|
+
<RemoteDir>res\drawable-xxhdpi</RemoteDir>
|
285
|
+
<Operation>1</Operation>
|
286
|
+
</Platform>
|
287
|
+
</DeployClass>
|
288
|
+
<DeployClass Name="AndroidLibnativeMipsFile">
|
289
|
+
<Platform Name="Android">
|
290
|
+
<RemoteDir>library\lib\mips</RemoteDir>
|
291
|
+
<Operation>1</Operation>
|
292
|
+
</Platform>
|
293
|
+
</DeployClass>
|
294
|
+
<DeployClass Name="AndroidSplashImageDef">
|
295
|
+
<Platform Name="Android">
|
296
|
+
<RemoteDir>res\drawable</RemoteDir>
|
297
|
+
<Operation>1</Operation>
|
298
|
+
</Platform>
|
299
|
+
</DeployClass>
|
300
|
+
<DeployClass Name="DebugSymbols">
|
301
|
+
<Platform Name="OSX32">
|
302
|
+
<RemoteDir>Contents\MacOS</RemoteDir>
|
303
|
+
<Operation>1</Operation>
|
304
|
+
</Platform>
|
305
|
+
<Platform Name="iOSSimulator">
|
306
|
+
<Operation>1</Operation>
|
307
|
+
</Platform>
|
308
|
+
<Platform Name="Win32">
|
309
|
+
<Operation>0</Operation>
|
310
|
+
</Platform>
|
311
|
+
</DeployClass>
|
312
|
+
<DeployClass Name="DependencyFramework">
|
313
|
+
<Platform Name="OSX32">
|
314
|
+
<RemoteDir>Contents\MacOS</RemoteDir>
|
315
|
+
<Operation>1</Operation>
|
316
|
+
<Extensions>.framework</Extensions>
|
317
|
+
</Platform>
|
318
|
+
<Platform Name="Win32">
|
319
|
+
<Operation>0</Operation>
|
320
|
+
</Platform>
|
321
|
+
</DeployClass>
|
322
|
+
<DeployClass Name="Android_SplashImage426">
|
323
|
+
<Platform Name="Android">
|
324
|
+
<RemoteDir>res\drawable-small</RemoteDir>
|
325
|
+
<Operation>1</Operation>
|
326
|
+
</Platform>
|
327
|
+
</DeployClass>
|
328
|
+
<DeployClass Name="ProjectiOSEntitlements">
|
329
|
+
<Platform Name="iOSDevice">
|
330
|
+
<Operation>1</Operation>
|
331
|
+
</Platform>
|
332
|
+
</DeployClass>
|
333
|
+
<DeployClass Name="AdditionalDebugSymbols">
|
334
|
+
<Platform Name="OSX32">
|
335
|
+
<RemoteDir>Contents\MacOS</RemoteDir>
|
336
|
+
<Operation>1</Operation>
|
337
|
+
</Platform>
|
338
|
+
<Platform Name="iOSSimulator">
|
339
|
+
<Operation>1</Operation>
|
340
|
+
</Platform>
|
341
|
+
<Platform Name="Win32">
|
342
|
+
<RemoteDir>Contents\MacOS</RemoteDir>
|
343
|
+
<Operation>0</Operation>
|
344
|
+
</Platform>
|
345
|
+
</DeployClass>
|
346
|
+
<DeployClass Name="AndroidClassesDexFile">
|
347
|
+
<Platform Name="Android">
|
348
|
+
<RemoteDir>classes</RemoteDir>
|
349
|
+
<Operation>1</Operation>
|
350
|
+
</Platform>
|
351
|
+
</DeployClass>
|
352
|
+
<DeployClass Name="ProjectiOSInfoPList">
|
353
|
+
<Platform Name="iOSDevice">
|
354
|
+
<Operation>1</Operation>
|
355
|
+
</Platform>
|
356
|
+
<Platform Name="iOSSimulator">
|
357
|
+
<Operation>1</Operation>
|
358
|
+
</Platform>
|
359
|
+
</DeployClass>
|
360
|
+
<DeployClass Name="iPad_Launch1024">
|
361
|
+
<Platform Name="iOSDevice">
|
362
|
+
<Operation>1</Operation>
|
363
|
+
</Platform>
|
364
|
+
<Platform Name="iOSSimulator">
|
365
|
+
<Operation>1</Operation>
|
366
|
+
</Platform>
|
367
|
+
</DeployClass>
|
368
|
+
<DeployClass Name="Android_DefaultAppIcon">
|
369
|
+
<Platform Name="Android">
|
370
|
+
<RemoteDir>res\drawable</RemoteDir>
|
371
|
+
<Operation>1</Operation>
|
372
|
+
</Platform>
|
373
|
+
</DeployClass>
|
374
|
+
<DeployClass Name="ProjectOSXResource">
|
375
|
+
<Platform Name="OSX32">
|
376
|
+
<RemoteDir>Contents\Resources</RemoteDir>
|
377
|
+
<Operation>1</Operation>
|
378
|
+
</Platform>
|
379
|
+
</DeployClass>
|
380
|
+
<DeployClass Name="ProjectiOSDeviceResourceRules">
|
381
|
+
<Platform Name="iOSDevice">
|
382
|
+
<Operation>1</Operation>
|
383
|
+
</Platform>
|
384
|
+
</DeployClass>
|
385
|
+
<DeployClass Name="iPad_Launch768">
|
386
|
+
<Platform Name="iOSDevice">
|
387
|
+
<Operation>1</Operation>
|
388
|
+
</Platform>
|
389
|
+
<Platform Name="iOSSimulator">
|
390
|
+
<Operation>1</Operation>
|
391
|
+
</Platform>
|
392
|
+
</DeployClass>
|
393
|
+
<DeployClass Required="true" Name="ProjectOutput">
|
394
|
+
<Platform Name="iOSDevice">
|
395
|
+
<Operation>1</Operation>
|
396
|
+
</Platform>
|
397
|
+
<Platform Name="Android">
|
398
|
+
<RemoteDir>library\lib\armeabi-v7a</RemoteDir>
|
399
|
+
<Operation>1</Operation>
|
400
|
+
</Platform>
|
401
|
+
<Platform Name="Win32">
|
402
|
+
<Operation>0</Operation>
|
403
|
+
</Platform>
|
404
|
+
<Platform Name="OSX32">
|
405
|
+
<RemoteDir>Contents\MacOS</RemoteDir>
|
406
|
+
<Operation>1</Operation>
|
407
|
+
</Platform>
|
408
|
+
<Platform Name="iOSSimulator">
|
409
|
+
<Operation>1</Operation>
|
410
|
+
</Platform>
|
411
|
+
</DeployClass>
|
412
|
+
<DeployClass Name="AndroidLibnativeArmeabiFile">
|
413
|
+
<Platform Name="Android">
|
414
|
+
<RemoteDir>library\lib\armeabi</RemoteDir>
|
415
|
+
<Operation>1</Operation>
|
416
|
+
</Platform>
|
417
|
+
</DeployClass>
|
418
|
+
<DeployClass Name="Android_SplashImage640">
|
419
|
+
<Platform Name="Android">
|
420
|
+
<RemoteDir>res\drawable-large</RemoteDir>
|
421
|
+
<Operation>1</Operation>
|
422
|
+
</Platform>
|
423
|
+
</DeployClass>
|
424
|
+
<DeployClass Name="File">
|
425
|
+
<Platform Name="iOSDevice">
|
426
|
+
<Operation>0</Operation>
|
427
|
+
</Platform>
|
428
|
+
<Platform Name="Android">
|
429
|
+
<Operation>0</Operation>
|
430
|
+
</Platform>
|
431
|
+
<Platform Name="Win32">
|
432
|
+
<Operation>0</Operation>
|
433
|
+
</Platform>
|
434
|
+
<Platform Name="OSX32">
|
435
|
+
<RemoteDir>Contents\MacOS</RemoteDir>
|
436
|
+
<Operation>0</Operation>
|
437
|
+
</Platform>
|
438
|
+
<Platform Name="iOSSimulator">
|
439
|
+
<Operation>0</Operation>
|
440
|
+
</Platform>
|
441
|
+
</DeployClass>
|
442
|
+
<DeployClass Name="iPhone_Launch640x1136">
|
443
|
+
<Platform Name="iOSDevice">
|
444
|
+
<Operation>1</Operation>
|
445
|
+
</Platform>
|
446
|
+
<Platform Name="iOSSimulator">
|
447
|
+
<Operation>1</Operation>
|
448
|
+
</Platform>
|
449
|
+
</DeployClass>
|
450
|
+
<DeployClass Name="Android_LauncherIcon36">
|
451
|
+
<Platform Name="Android">
|
452
|
+
<RemoteDir>res\drawable-ldpi</RemoteDir>
|
453
|
+
<Operation>1</Operation>
|
454
|
+
</Platform>
|
455
|
+
</DeployClass>
|
456
|
+
<DeployClass Name="AndroidSplashStyles">
|
457
|
+
<Platform Name="Android">
|
458
|
+
<RemoteDir>res\values</RemoteDir>
|
459
|
+
<Operation>1</Operation>
|
460
|
+
</Platform>
|
461
|
+
</DeployClass>
|
462
|
+
<DeployClass Name="iPad_Launch1536">
|
463
|
+
<Platform Name="iOSDevice">
|
464
|
+
<Operation>1</Operation>
|
465
|
+
</Platform>
|
466
|
+
<Platform Name="iOSSimulator">
|
467
|
+
<Operation>1</Operation>
|
468
|
+
</Platform>
|
469
|
+
</DeployClass>
|
470
|
+
<DeployClass Name="Android_LauncherIcon48">
|
471
|
+
<Platform Name="Android">
|
472
|
+
<RemoteDir>res\drawable-mdpi</RemoteDir>
|
473
|
+
<Operation>1</Operation>
|
474
|
+
</Platform>
|
475
|
+
</DeployClass>
|
476
|
+
<DeployClass Name="Android_LauncherIcon72">
|
477
|
+
<Platform Name="Android">
|
478
|
+
<RemoteDir>res\drawable-hdpi</RemoteDir>
|
479
|
+
<Operation>1</Operation>
|
480
|
+
</Platform>
|
481
|
+
</DeployClass>
|
482
|
+
<DeployClass Name="ProjectAndroidManifest">
|
483
|
+
<Platform Name="Android">
|
484
|
+
<Operation>1</Operation>
|
485
|
+
</Platform>
|
486
|
+
</DeployClass>
|
487
|
+
<ProjectRoot Platform="Android" Name="$(PROJECTNAME)"/>
|
488
|
+
<ProjectRoot Platform="iOSDevice" Name="$(PROJECTNAME).app"/>
|
489
|
+
<ProjectRoot Platform="Win32" Name="$(PROJECTNAME)"/>
|
490
|
+
<ProjectRoot Platform="OSX32" Name="$(PROJECTNAME).app"/>
|
491
|
+
<ProjectRoot Platform="iOSSimulator" Name="$(PROJECTNAME).app"/>
|
492
|
+
<ProjectRoot Platform="Win64" Name="$(PROJECTNAME)"/>
|
493
|
+
</Deployment>
|
494
|
+
<Platforms>
|
495
|
+
<Platform value="Android">False</Platform>
|
496
|
+
<Platform value="iOSDevice">False</Platform>
|
497
|
+
<Platform value="iOSSimulator">False</Platform>
|
498
|
+
<Platform value="OSX32">False</Platform>
|
499
|
+
<Platform value="Win32">True</Platform>
|
500
|
+
<Platform value="Win64">False</Platform>
|
501
|
+
</Platforms>
|
502
|
+
<UnitTesting>
|
503
|
+
<TestProjectName>C:\dev\delphi-compiler\test\Test\testTests.dproj</TestProjectName>
|
504
|
+
</UnitTesting>
|
505
|
+
</BorlandProject>
|
506
|
+
<ProjectFileVersion>12</ProjectFileVersion>
|
507
|
+
</ProjectExtensions>
|
508
|
+
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
509
|
+
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
|
510
|
+
<Import Project="$(MSBuildProjectName).deployproj" Condition="Exists('$(MSBuildProjectName).deployproj')"/>
|
511
|
+
</Project>
|