delphivm 0.8.1 → 0.9.0
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 +4 -4
- data/Thorfile.thor +2 -2
- data/delphivm.gemspec +1 -1
- data/delphivm.sublime-project +8 -0
- data/delphivm.sublime-workspace +453 -0
- data/lib/build_target.rb +84 -0
- data/lib/delphivm.rb +77 -137
- data/lib/delphivm/generator.rb +123 -0
- data/lib/delphivm/ide_services.rb +8 -3
- data/lib/delphivm/runner.rb +5 -8
- data/lib/delphivm/version.rb +3 -4
- data/lib/dvm/gen/app.thor +84 -0
- data/lib/dvm/ide.thor +3 -2
- data/lib/dvm/project.thor +1 -1
- data/lib/extensions.rb +1 -1
- data/templates/delphi/app.tt/.gitignore.tt +18 -0
- data/templates/delphi/app.tt/BDS.bat.tt +9 -0
- data/templates/delphi/app.tt/BUILD.bat.tt +19 -0
- data/templates/delphi/app.tt/README.md.tt +16 -0
- data/templates/delphi/app.tt/VERSION +1 -0
- data/templates/delphi/app.tt/license.txt +61 -0
- data/templates/delphi/app.tt/src/@D170/%{app_name}App.groupproj +45 -0
- data/templates/delphi/app.tt/src/source.optset +18 -0
- data/templates/delphi/dproj/sample.tt/samples/@D170/%{name}.dpr +12 -0
- data/templates/delphi/dproj/sample.tt/samples/@D170/%{name}.dproj +146 -0
- data/templates/delphi/dproj/src.tt/src/@D170/%{app_name}.dpr +12 -0
- data/templates/delphi/dproj/src.tt/src/@D170/%{app_name}.dproj +174 -0
- data/templates/delphi/dproj/test.tt/tests/@D170/%{name}.dpr +24 -0
- data/templates/delphi/dproj/test.tt/tests/@D170/%{name}.dproj +146 -0
- data/templates/delphi/samples.tt/samples/@D170/%{app_name}Samples.groupproj +44 -0
- data/templates/delphi/samples.tt/samples/samples.optset +19 -0
- data/templates/delphi/tests.tt/tests/@D170/%{app_name}Tests.groupproj +44 -0
- data/templates/delphi/tests.tt/tests/tests.optset +35 -0
- metadata +26 -2
@@ -0,0 +1,174 @@
|
|
1
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2
|
+
<PropertyGroup>
|
3
|
+
<ProjectGuid>{<%=($src_prj_guid ||= SecureRandom.uuid.upcase) %>}</ProjectGuid>
|
4
|
+
<ProjectVersion>14.4</ProjectVersion>
|
5
|
+
<FrameworkType>VCL</FrameworkType>
|
6
|
+
<MainSource><%=app_name%>.dpr</MainSource>
|
7
|
+
<Base>True</Base>
|
8
|
+
<Config Condition="'$(Config)'==''">Debug</Config>
|
9
|
+
<Platform Condition="'$(Platform)'==''">Win32</Platform>
|
10
|
+
<TargetedPlatforms>1</TargetedPlatforms>
|
11
|
+
<AppType>Application</AppType>
|
12
|
+
</PropertyGroup>
|
13
|
+
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
14
|
+
<Base>true</Base>
|
15
|
+
</PropertyGroup>
|
16
|
+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
|
17
|
+
<Base_Win32>true</Base_Win32>
|
18
|
+
<CfgParent>Base</CfgParent>
|
19
|
+
<Base>true</Base>
|
20
|
+
</PropertyGroup>
|
21
|
+
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
|
22
|
+
<Base_Win64>true</Base_Win64>
|
23
|
+
<CfgParent>Base</CfgParent>
|
24
|
+
<Base>true</Base>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_1)'!=''">
|
27
|
+
<Cfg_1>true</Cfg_1>
|
28
|
+
<CfgParent>Base</CfgParent>
|
29
|
+
<Base>true</Base>
|
30
|
+
</PropertyGroup>
|
31
|
+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
|
32
|
+
<Cfg_1_Win32>true</Cfg_1_Win32>
|
33
|
+
<CfgParent>Cfg_1</CfgParent>
|
34
|
+
<Cfg_1>true</Cfg_1>
|
35
|
+
<Base>true</Base>
|
36
|
+
</PropertyGroup>
|
37
|
+
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_2)'!=''">
|
38
|
+
<Cfg_2>true</Cfg_2>
|
39
|
+
<CfgParent>Base</CfgParent>
|
40
|
+
<Base>true</Base>
|
41
|
+
</PropertyGroup>
|
42
|
+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
|
43
|
+
<Cfg_2_Win32>true</Cfg_2_Win32>
|
44
|
+
<CfgParent>Cfg_2</CfgParent>
|
45
|
+
<Cfg_2>true</Cfg_2>
|
46
|
+
<Base>true</Base>
|
47
|
+
</PropertyGroup>
|
48
|
+
<Import Project="..\source.optset" Condition="'$(Base)'!='' And Exists('..\source.optset')"/>
|
49
|
+
<PropertyGroup Condition="'$(Base)'!=''">
|
50
|
+
<Manifest_File>None</Manifest_File>
|
51
|
+
<VerInfo_Locale>3082</VerInfo_Locale>
|
52
|
+
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace)</DCC_Namespace>
|
53
|
+
<Icon_MainIcon>$(BDS)\bin\delphi_PROJECTICON.ico</Icon_MainIcon>
|
54
|
+
<DCC_E>false</DCC_E>
|
55
|
+
<DCC_N>false</DCC_N>
|
56
|
+
<DCC_S>false</DCC_S>
|
57
|
+
<DCC_F>false</DCC_F>
|
58
|
+
<DCC_K>false</DCC_K>
|
59
|
+
<CfgDependentOn>..\source.optset</CfgDependentOn>
|
60
|
+
</PropertyGroup>
|
61
|
+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
|
62
|
+
<DCC_UsePackage>bindcompfmx;DBXSqliteDriver;vcldbx;fmx;rtl;dbrtl;DbxClientDriver;IndySystem;TeeDB;bindcomp;inetdb;vclib;inetdbbde;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DBXOdbcDriver;DataSnapServer;Tee;DataSnapProviderClient;xmlrtl;svnui;ibxpress;DbxCommonDriver;DBXSybaseASEDriver;vclimg;IndyProtocols;dbxcds;DBXMySQLDriver;DatasnapConnectorsFreePascal;MetropolisUILiveTile;vclactnband;bindengine;vcldb;soaprtl;bindcompdbx;vcldsnap;bindcompvcl;FMXTee;TeeUI;vclie;vcltouch;DBXDb2Driver;websnap;DBXOracleDriver;CustomIPTransport;vclribbon;VclSmp;dsnap;IndyIPServer;DBXInformixDriver;Intraweb;fmxase;vcl;IndyCore;DataSnapConnectors;CodeSiteExpressPkg;IndyIPCommon;CloudService;dsnapcon;DBXFirebirdDriver;DBXMSSQLDriver;inet;FmxTeeUI;fmxobj;vclx;inetdbxpress;webdsnap;svn;DBXSybaseASADriver;fmxdae;bdertl;dbexpress;adortl;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
63
|
+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
|
64
|
+
<VerInfo_Locale>1033</VerInfo_Locale>
|
65
|
+
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
|
66
|
+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
|
67
|
+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
68
|
+
</PropertyGroup>
|
69
|
+
<PropertyGroup Condition="'$(Base_Win64)'!=''">
|
70
|
+
<DCC_UsePackage>bindcompfmx;DBXSqliteDriver;fmx;rtl;dbrtl;DbxClientDriver;IndySystem;TeeDB;bindcomp;inetdb;vclib;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DBXOdbcDriver;DataSnapServer;Tee;DataSnapProviderClient;xmlrtl;ibxpress;DbxCommonDriver;DBXSybaseASEDriver;vclimg;IndyProtocols;dbxcds;DBXMySQLDriver;DatasnapConnectorsFreePascal;MetropolisUILiveTile;vclactnband;bindengine;vcldb;soaprtl;bindcompdbx;vcldsnap;bindcompvcl;FMXTee;TeeUI;vclie;vcltouch;DBXDb2Driver;websnap;DBXOracleDriver;CustomIPTransport;vclribbon;VclSmp;dsnap;IndyIPServer;DBXInformixDriver;Intraweb;fmxase;vcl;IndyCore;DataSnapConnectors;IndyIPCommon;CloudService;dsnapcon;DBXFirebirdDriver;DBXMSSQLDriver;inet;FmxTeeUI;fmxobj;vclx;inetdbxpress;webdsnap;DBXSybaseASADriver;fmxdae;dbexpress;adortl;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
71
|
+
</PropertyGroup>
|
72
|
+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
73
|
+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
|
74
|
+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
75
|
+
<DCC_DebugDCUs>true</DCC_DebugDCUs>
|
76
|
+
<DCC_Optimize>false</DCC_Optimize>
|
77
|
+
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
78
|
+
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
|
79
|
+
<DCC_RemoteDebug>true</DCC_RemoteDebug>
|
80
|
+
</PropertyGroup>
|
81
|
+
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
|
82
|
+
<VerInfo_Locale>1033</VerInfo_Locale>
|
83
|
+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
|
84
|
+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
85
|
+
<DCC_RemoteDebug>false</DCC_RemoteDebug>
|
86
|
+
</PropertyGroup>
|
87
|
+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
|
88
|
+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
|
89
|
+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
|
90
|
+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
|
91
|
+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
|
92
|
+
<DCC_DebugInformation>false</DCC_DebugInformation>
|
93
|
+
</PropertyGroup>
|
94
|
+
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
|
95
|
+
<VerInfo_Locale>1033</VerInfo_Locale>
|
96
|
+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
|
97
|
+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
98
|
+
</PropertyGroup>
|
99
|
+
<ItemGroup>
|
100
|
+
<DelphiCompile Include="$(MainSource)">
|
101
|
+
<MainSource>MainSource</MainSource>
|
102
|
+
</DelphiCompile>
|
103
|
+
<BuildConfiguration Include="Release">
|
104
|
+
<Key>Cfg_2</Key>
|
105
|
+
<CfgParent>Base</CfgParent>
|
106
|
+
</BuildConfiguration>
|
107
|
+
<BuildConfiguration Include="Base">
|
108
|
+
<Key>Base</Key>
|
109
|
+
<DependentOn>..\source.optset</DependentOn>
|
110
|
+
</BuildConfiguration>
|
111
|
+
<BuildConfiguration Include="Debug">
|
112
|
+
<Key>Cfg_1</Key>
|
113
|
+
<CfgParent>Base</CfgParent>
|
114
|
+
</BuildConfiguration>
|
115
|
+
</ItemGroup>
|
116
|
+
<ProjectExtensions>
|
117
|
+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
118
|
+
<Borland.ProjectType/>
|
119
|
+
<BorlandProject>
|
120
|
+
<Delphi.Personality>
|
121
|
+
<VersionInfo>
|
122
|
+
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
|
123
|
+
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
124
|
+
<VersionInfo Name="MajorVer">1</VersionInfo>
|
125
|
+
<VersionInfo Name="MinorVer">0</VersionInfo>
|
126
|
+
<VersionInfo Name="Release">0</VersionInfo>
|
127
|
+
<VersionInfo Name="Build">0</VersionInfo>
|
128
|
+
<VersionInfo Name="Debug">False</VersionInfo>
|
129
|
+
<VersionInfo Name="PreRelease">False</VersionInfo>
|
130
|
+
<VersionInfo Name="Special">False</VersionInfo>
|
131
|
+
<VersionInfo Name="Private">False</VersionInfo>
|
132
|
+
<VersionInfo Name="DLL">False</VersionInfo>
|
133
|
+
<VersionInfo Name="Locale">3082</VersionInfo>
|
134
|
+
<VersionInfo Name="CodePage">1252</VersionInfo>
|
135
|
+
</VersionInfo>
|
136
|
+
<VersionInfoKeys>
|
137
|
+
<VersionInfoKeys Name="CompanyName"/>
|
138
|
+
<VersionInfoKeys Name="FileDescription"/>
|
139
|
+
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
140
|
+
<VersionInfoKeys Name="InternalName"/>
|
141
|
+
<VersionInfoKeys Name="LegalCopyright"/>
|
142
|
+
<VersionInfoKeys Name="LegalTrademarks"/>
|
143
|
+
<VersionInfoKeys Name="OriginalFilename"/>
|
144
|
+
<VersionInfoKeys Name="ProductName"/>
|
145
|
+
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
146
|
+
<VersionInfoKeys Name="Comments"/>
|
147
|
+
<VersionInfoKeys Name="CFBundleName"/>
|
148
|
+
<VersionInfoKeys Name="CFBundleDisplayName"/>
|
149
|
+
<VersionInfoKeys Name="CFBundleIdentifier"/>
|
150
|
+
<VersionInfoKeys Name="CFBundleVersion"/>
|
151
|
+
<VersionInfoKeys Name="CFBundlePackageType"/>
|
152
|
+
<VersionInfoKeys Name="CFBundleSignature"/>
|
153
|
+
<VersionInfoKeys Name="CFBundleAllowMixedLocalizations"/>
|
154
|
+
<VersionInfoKeys Name="CFBundleExecutable"/>
|
155
|
+
</VersionInfoKeys>
|
156
|
+
<Source>
|
157
|
+
<Source Name="MainSource"><%=app_name%>.dpr</Source>
|
158
|
+
</Source>
|
159
|
+
<Excluded_Packages>
|
160
|
+
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k170.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
|
161
|
+
<Excluded_Packages Name="$(BDSBIN)\dclofficexp170.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
|
162
|
+
</Excluded_Packages>
|
163
|
+
</Delphi.Personality>
|
164
|
+
<Deployment/>
|
165
|
+
<Platforms>
|
166
|
+
<Platform value="Win32">True</Platform>
|
167
|
+
<Platform value="Win64">False</Platform>
|
168
|
+
</Platforms>
|
169
|
+
</BorlandProject>
|
170
|
+
<ProjectFileVersion>12</ProjectFileVersion>
|
171
|
+
</ProjectExtensions>
|
172
|
+
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
173
|
+
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
|
174
|
+
</Project>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
program <%=name%>;
|
2
|
+
{
|
3
|
+
|
4
|
+
Delphi DUnit Test Project
|
5
|
+
-------------------------
|
6
|
+
This project contains the DUnit test framework and the GUI/Console test runners.
|
7
|
+
Add "CONSOLE_TESTRUNNER" to the conditional defines entry in the project options
|
8
|
+
to use the console test runner. Otherwise the GUI test runner will be used by
|
9
|
+
default.
|
10
|
+
|
11
|
+
}
|
12
|
+
|
13
|
+
{$IFDEF CONSOLE_TESTRUNNER}
|
14
|
+
{$APPTYPE CONSOLE}
|
15
|
+
{$ENDIF}
|
16
|
+
|
17
|
+
uses
|
18
|
+
DUnitTestRunner;
|
19
|
+
|
20
|
+
{$R *.RES}
|
21
|
+
|
22
|
+
begin
|
23
|
+
DUnitTestRunner.RunRegisteredTests;
|
24
|
+
end.
|
@@ -0,0 +1,146 @@
|
|
1
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2
|
+
<PropertyGroup>
|
3
|
+
<ProjectGuid>{<%=($test_prj_guid ||= SecureRandom.uuid.upcase) %>}</ProjectGuid>
|
4
|
+
<ProjectVersion>14.4</ProjectVersion>
|
5
|
+
<FrameworkType>VCL</FrameworkType>
|
6
|
+
<MainSource><%=name%>.dpr</MainSource>
|
7
|
+
<Base>True</Base>
|
8
|
+
<Config Condition="'$(Config)'==''">Tests</Config>
|
9
|
+
<Platform Condition="'$(Platform)'==''">Win32</Platform>
|
10
|
+
<TargetedPlatforms>1</TargetedPlatforms>
|
11
|
+
<AppType>Application</AppType>
|
12
|
+
</PropertyGroup>
|
13
|
+
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
|
14
|
+
<Base>true</Base>
|
15
|
+
</PropertyGroup>
|
16
|
+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''">
|
17
|
+
<Base_Win32>true</Base_Win32>
|
18
|
+
<CfgParent>Base</CfgParent>
|
19
|
+
<Base>true</Base>
|
20
|
+
</PropertyGroup>
|
21
|
+
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''">
|
22
|
+
<Base_Win64>true</Base_Win64>
|
23
|
+
<CfgParent>Base</CfgParent>
|
24
|
+
<Base>true</Base>
|
25
|
+
</PropertyGroup>
|
26
|
+
<PropertyGroup Condition="'$(Config)'=='Tests' or '$(Cfg_1)'!=''">
|
27
|
+
<Cfg_1>true</Cfg_1>
|
28
|
+
<CfgParent>Base</CfgParent>
|
29
|
+
<Base>true</Base>
|
30
|
+
</PropertyGroup>
|
31
|
+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win32)'!=''">
|
32
|
+
<Cfg_1_Win32>true</Cfg_1_Win32>
|
33
|
+
<CfgParent>Cfg_1</CfgParent>
|
34
|
+
<Cfg_1>true</Cfg_1>
|
35
|
+
<Base>true</Base>
|
36
|
+
</PropertyGroup>
|
37
|
+
<Import Project="..\tests.optset" Condition="'$(Base)'!='' And Exists('..\tests.optset')"/>
|
38
|
+
<PropertyGroup Condition="'$(Base)'!=''">
|
39
|
+
<Manifest_File>None</Manifest_File>
|
40
|
+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
|
41
|
+
<VerInfo_Locale>3082</VerInfo_Locale>
|
42
|
+
<DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;$(DCC_Namespace)</DCC_Namespace>
|
43
|
+
<Icon_MainIcon>$(BDS)\bin\delphi_PROJECTICON.ico</Icon_MainIcon>
|
44
|
+
<DCC_E>false</DCC_E>
|
45
|
+
<DCC_N>false</DCC_N>
|
46
|
+
<DCC_S>false</DCC_S>
|
47
|
+
<DCC_F>false</DCC_F>
|
48
|
+
<DCC_K>false</DCC_K>
|
49
|
+
<CfgDependentOn>..\tests.optset</CfgDependentOn>
|
50
|
+
</PropertyGroup>
|
51
|
+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
|
52
|
+
<DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
|
53
|
+
<VerInfo_Locale>1033</VerInfo_Locale>
|
54
|
+
<DCC_UsePackage>bindcompfmx;DBXSqliteDriver;vcldbx;fmx;rtl;dbrtl;DbxClientDriver;IndySystem;TeeDB;bindcomp;inetdb;vclib;inetdbbde;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DBXOdbcDriver;DataSnapServer;Tee;DataSnapProviderClient;xmlrtl;svnui;ibxpress;DbxCommonDriver;DBXSybaseASEDriver;vclimg;IndyProtocols;dbxcds;DBXMySQLDriver;DatasnapConnectorsFreePascal;MetropolisUILiveTile;vclactnband;bindengine;vcldb;soaprtl;bindcompdbx;vcldsnap;bindcompvcl;FMXTee;TeeUI;vclie;vcltouch;DBXDb2Driver;websnap;DBXOracleDriver;CustomIPTransport;vclribbon;VclSmp;dsnap;IndyIPServer;DBXInformixDriver;Intraweb;fmxase;vcl;IndyCore;DataSnapConnectors;CodeSiteExpressPkg;IndyIPCommon;CloudService;dsnapcon;DBXFirebirdDriver;DBXMSSQLDriver;inet;FmxTeeUI;fmxobj;vclx;inetdbxpress;webdsnap;svn;DBXSybaseASADriver;fmxdae;bdertl;dbexpress;adortl;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
55
|
+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
56
|
+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
|
57
|
+
</PropertyGroup>
|
58
|
+
<PropertyGroup Condition="'$(Base_Win64)'!=''">
|
59
|
+
<DCC_UsePackage>bindcompfmx;DBXSqliteDriver;fmx;rtl;dbrtl;DbxClientDriver;IndySystem;bindcomp;inetdb;DBXInterBaseDriver;DataSnapClient;DataSnapCommon;DBXOdbcDriver;DataSnapServer;DataSnapProviderClient;xmlrtl;DbxCommonDriver;DBXSybaseASEDriver;vclimg;IndyProtocols;dbxcds;DBXMySQLDriver;vclactnband;bindengine;vcldb;soaprtl;bindcompdbx;vcldsnap;bindcompvcl;vclie;vcltouch;DBXDb2Driver;websnap;DBXOracleDriver;CustomIPTransport;VclSmp;dsnap;IndyIPServer;DBXInformixDriver;fmxase;vcl;IndyCore;IndyIPCommon;dsnapcon;DBXFirebirdDriver;DBXMSSQLDriver;inet;fmxobj;vclx;inetdbxpress;webdsnap;DBXSybaseASADriver;fmxdae;dbexpress;DataSnapIndy10ServerTransport;IndyIPClient;$(DCC_UsePackage)</DCC_UsePackage>
|
60
|
+
</PropertyGroup>
|
61
|
+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
|
62
|
+
<DCC_DebugDCUs>true</DCC_DebugDCUs>
|
63
|
+
<DCC_Optimize>false</DCC_Optimize>
|
64
|
+
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
|
65
|
+
<DCC_DebugInfoInExe>true</DCC_DebugInfoInExe>
|
66
|
+
<DCC_RemoteDebug>true</DCC_RemoteDebug>
|
67
|
+
</PropertyGroup>
|
68
|
+
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
|
69
|
+
<VerInfo_Locale>1033</VerInfo_Locale>
|
70
|
+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
|
71
|
+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
|
72
|
+
<DCC_RemoteDebug>false</DCC_RemoteDebug>
|
73
|
+
</PropertyGroup>
|
74
|
+
<ItemGroup>
|
75
|
+
<DelphiCompile Include="$(MainSource)">
|
76
|
+
<MainSource>MainSource</MainSource>
|
77
|
+
</DelphiCompile>
|
78
|
+
<BuildConfiguration Include="Base">
|
79
|
+
<Key>Base</Key>
|
80
|
+
<DependentOn>..\tests.optset</DependentOn>
|
81
|
+
</BuildConfiguration>
|
82
|
+
<BuildConfiguration Include="Tests">
|
83
|
+
<Key>Cfg_1</Key>
|
84
|
+
<CfgParent>Base</CfgParent>
|
85
|
+
</BuildConfiguration>
|
86
|
+
</ItemGroup>
|
87
|
+
<ProjectExtensions>
|
88
|
+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
89
|
+
<Borland.ProjectType/>
|
90
|
+
<BorlandProject>
|
91
|
+
<Delphi.Personality>
|
92
|
+
<VersionInfo>
|
93
|
+
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
|
94
|
+
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
|
95
|
+
<VersionInfo Name="MajorVer">1</VersionInfo>
|
96
|
+
<VersionInfo Name="MinorVer">0</VersionInfo>
|
97
|
+
<VersionInfo Name="Release">0</VersionInfo>
|
98
|
+
<VersionInfo Name="Build">0</VersionInfo>
|
99
|
+
<VersionInfo Name="Debug">False</VersionInfo>
|
100
|
+
<VersionInfo Name="PreRelease">False</VersionInfo>
|
101
|
+
<VersionInfo Name="Special">False</VersionInfo>
|
102
|
+
<VersionInfo Name="Private">False</VersionInfo>
|
103
|
+
<VersionInfo Name="DLL">False</VersionInfo>
|
104
|
+
<VersionInfo Name="Locale">3082</VersionInfo>
|
105
|
+
<VersionInfo Name="CodePage">1252</VersionInfo>
|
106
|
+
</VersionInfo>
|
107
|
+
<VersionInfoKeys>
|
108
|
+
<VersionInfoKeys Name="CompanyName"/>
|
109
|
+
<VersionInfoKeys Name="FileDescription"/>
|
110
|
+
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
|
111
|
+
<VersionInfoKeys Name="InternalName"/>
|
112
|
+
<VersionInfoKeys Name="LegalCopyright"/>
|
113
|
+
<VersionInfoKeys Name="LegalTrademarks"/>
|
114
|
+
<VersionInfoKeys Name="OriginalFilename"/>
|
115
|
+
<VersionInfoKeys Name="ProductName"/>
|
116
|
+
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
|
117
|
+
<VersionInfoKeys Name="Comments"/>
|
118
|
+
<VersionInfoKeys Name="CFBundleName"/>
|
119
|
+
<VersionInfoKeys Name="CFBundleDisplayName"/>
|
120
|
+
<VersionInfoKeys Name="CFBundleIdentifier"/>
|
121
|
+
<VersionInfoKeys Name="CFBundleVersion"/>
|
122
|
+
<VersionInfoKeys Name="CFBundlePackageType"/>
|
123
|
+
<VersionInfoKeys Name="CFBundleSignature"/>
|
124
|
+
<VersionInfoKeys Name="CFBundleAllowMixedLocalizations"/>
|
125
|
+
<VersionInfoKeys Name="CFBundleExecutable"/>
|
126
|
+
</VersionInfoKeys>
|
127
|
+
<Source>
|
128
|
+
<Source Name="MainSource"><%=name%>.dpr</Source>
|
129
|
+
</Source>
|
130
|
+
<Excluded_Packages>
|
131
|
+
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k170.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages>
|
132
|
+
<Excluded_Packages Name="$(BDSBIN)\dclofficexp170.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages>
|
133
|
+
</Excluded_Packages>
|
134
|
+
</Delphi.Personality>
|
135
|
+
<Deployment/>
|
136
|
+
<Platforms>
|
137
|
+
<Platform value="Win32">True</Platform>
|
138
|
+
<Platform value="Win64">False</Platform>
|
139
|
+
</Platforms>
|
140
|
+
<ModelSupport>False</ModelSupport>
|
141
|
+
</BorlandProject>
|
142
|
+
<ProjectFileVersion>12</ProjectFileVersion>
|
143
|
+
</ProjectExtensions>
|
144
|
+
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
|
145
|
+
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
|
146
|
+
</Project>
|
@@ -0,0 +1,44 @@
|
|
1
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2
|
+
<PropertyGroup>
|
3
|
+
<ProjectGuid>{<%=SecureRandom.uuid.upcase%>}</ProjectGuid>
|
4
|
+
</PropertyGroup>
|
5
|
+
<ItemGroup>
|
6
|
+
<Projects Include="<%=name%>.dproj">
|
7
|
+
<Dependencies/>
|
8
|
+
</Projects>
|
9
|
+
</ItemGroup>
|
10
|
+
<ProjectExtensions>
|
11
|
+
<Borland.Personality>Default.Personality.12</Borland.Personality>
|
12
|
+
<Borland.ProjectType/>
|
13
|
+
<BorlandProject>
|
14
|
+
<Default.Personality/>
|
15
|
+
</BorlandProject>
|
16
|
+
</ProjectExtensions>
|
17
|
+
<Target Name="<%=name%>">
|
18
|
+
<MSBuild Projects="<%=name%>.dproj"/>
|
19
|
+
</Target>
|
20
|
+
<Target Name="<%=name%>:Clean">
|
21
|
+
<MSBuild Projects="<%=name%>.dproj" Targets="Clean"/>
|
22
|
+
</Target>
|
23
|
+
<Target Name="<%=name%>:Make">
|
24
|
+
<MSBuild Projects="<%=name%>.dproj" Targets="Make"/>
|
25
|
+
</Target>
|
26
|
+
<Target Name="Build">
|
27
|
+
<CallTarget Targets="<%=name%>"/>
|
28
|
+
</Target>
|
29
|
+
<Target Name="Clean">
|
30
|
+
<CallTarget Targets="<%=name%>:Clean"/>
|
31
|
+
</Target>
|
32
|
+
<Target Name="Make">
|
33
|
+
<CallTarget Targets="<%=name%>:Make"/>
|
34
|
+
</Target>
|
35
|
+
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
|
36
|
+
<ItemGroup Condition="'$(BuildGroup)'=='All'">
|
37
|
+
<BuildGroupProject Include="<%=name%>.dproj">
|
38
|
+
<ProjectGuid>{<%=($sample_prj_guid ||= SecureRandom.uuid.upcase) %>}</ProjectGuid>
|
39
|
+
<Configurations>Samples</Configurations>
|
40
|
+
<Platforms>Win32</Platforms>
|
41
|
+
<Enabled>True</Enabled>
|
42
|
+
</BuildGroupProject>
|
43
|
+
</ItemGroup>
|
44
|
+
</Project>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2
|
+
<PropertyGroup>
|
3
|
+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
|
4
|
+
<DCC_ExeOutput>$(BDSPROJECTGROUPDIR)\out\$(IDEVersion)\$(Platform)\$(Config)\bin</DCC_ExeOutput>
|
5
|
+
<DCC_BplOutput>$(BDSPROJECTGROUPDIR)\out\$(IDEVersion)\$(Platform)\$(Config)\bin</DCC_BplOutput>
|
6
|
+
<DCC_UnitSearchPath>$(BDSPROJECTGROUPDIR)\out\$(IDEVersion)\$(Platform)\$(Config)\lib;$(BDSPROJECTGROUPDIR)\out\$(IDEVersion)\$(Platform)\Debug\lib;$(DCC_UnitSearchPath)</DCC_UnitSearchPath>
|
7
|
+
<DCC_UnitAlias>WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;$(DCC_UnitAlias)</DCC_UnitAlias>
|
8
|
+
<DCC_DcpOutput>$(BDSPROJECTGROUPDIR)\out\$(IDEVersion)\$(Platform)\$(Config)\lib</DCC_DcpOutput>
|
9
|
+
<DCC_DcuOutput>$(BDSPROJECTGROUPDIR)\out\$(IDEVersion)\$(Platform)\$(Config)\lib</DCC_DcuOutput>
|
10
|
+
</PropertyGroup>
|
11
|
+
<ProjectExtensions>
|
12
|
+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
|
13
|
+
<Borland.ProjectType>OptionSet</Borland.ProjectType>
|
14
|
+
<BorlandProject>
|
15
|
+
<Delphi.Personality/>
|
16
|
+
</BorlandProject>
|
17
|
+
<ProjectFileVersion>12</ProjectFileVersion>
|
18
|
+
</ProjectExtensions>
|
19
|
+
</Project>
|
@@ -0,0 +1,44 @@
|
|
1
|
+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2
|
+
<PropertyGroup>
|
3
|
+
<ProjectGuid>{<%=SecureRandom.uuid.upcase%>}</ProjectGuid>
|
4
|
+
</PropertyGroup>
|
5
|
+
<ItemGroup>
|
6
|
+
<Projects Include="<%=name%>.dproj">
|
7
|
+
<Dependencies/>
|
8
|
+
</Projects>
|
9
|
+
</ItemGroup>
|
10
|
+
<ProjectExtensions>
|
11
|
+
<Borland.Personality>Default.Personality.12</Borland.Personality>
|
12
|
+
<Borland.ProjectType/>
|
13
|
+
<BorlandProject>
|
14
|
+
<Default.Personality/>
|
15
|
+
</BorlandProject>
|
16
|
+
</ProjectExtensions>
|
17
|
+
<Target Name="<%=name%>">
|
18
|
+
<MSBuild Projects="<%=name%>.dproj"/>
|
19
|
+
</Target>
|
20
|
+
<Target Name="<%=name%>:Clean">
|
21
|
+
<MSBuild Projects="<%=name%>.dproj" Targets="Clean"/>
|
22
|
+
</Target>
|
23
|
+
<Target Name="<%=name%>:Make">
|
24
|
+
<MSBuild Projects="<%=name%>.dproj" Targets="Make"/>
|
25
|
+
</Target>
|
26
|
+
<Target Name="Build">
|
27
|
+
<CallTarget Targets="<%=name%>"/>
|
28
|
+
</Target>
|
29
|
+
<Target Name="Clean">
|
30
|
+
<CallTarget Targets="<%=name%>:Clean"/>
|
31
|
+
</Target>
|
32
|
+
<Target Name="Make">
|
33
|
+
<CallTarget Targets="<%=name%>:Make"/>
|
34
|
+
</Target>
|
35
|
+
<Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/>
|
36
|
+
<ItemGroup Condition="'$(BuildGroup)'=='All'">
|
37
|
+
<BuildGroupProject Include="<%=name%>.dproj">
|
38
|
+
<ProjectGuid>{<%=($test_prj_guid ||= SecureRandom.uuid.upcase) %>}</ProjectGuid>
|
39
|
+
<Configurations>Tests</Configurations>
|
40
|
+
<Platforms>Win32</Platforms>
|
41
|
+
<Enabled>True</Enabled>
|
42
|
+
</BuildGroupProject>
|
43
|
+
</ItemGroup>
|
44
|
+
</Project>
|