Skip to content

Commit 19b983b

Browse files
committed
Copied all .dpr and .dproj files back
1 parent 93cfe70 commit 19b983b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+6510
-0
lines changed

Demos/Demo01/Demo01.dpr

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
program Demo01;
2+
3+
{$I Definition.Inc}
4+
5+
uses
6+
Forms,
7+
Unit1 in 'Unit1.pas' {Form1};
8+
9+
{$R *.res}
10+
11+
begin
12+
Application.Initialize;
13+
Application.CreateForm(TForm1, Form1);
14+
Application.Run;
15+
end.

Demos/Demo01/Demo01.dproj

Lines changed: 181 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,181 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<ProjectGuid>{CA67512A-3B3A-48FD-8952-5503337690C4}</ProjectGuid>
4+
<MainSource>Demo01.dpr</MainSource>
5+
<Config Condition="'$(Config)'==''">Debug</Config>
6+
<DCC_DCCCompiler>DCC32</DCC_DCCCompiler>
7+
<ProjectVersion>19.1</ProjectVersion>
8+
<FrameworkType>VCL</FrameworkType>
9+
<Base>True</Base>
10+
<Platform Condition="'$(Platform)'==''">Win64</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)'=='Release' 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)'=='Debug' 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>Demo01</SanitizedProjectName>
63+
<DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;Winapi;$(DCC_Namespace)</DCC_Namespace>
64+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
65+
<VerInfo_Locale>1033</VerInfo_Locale>
66+
<DCC_DependencyCheckOutputName>Demo01.exe</DCC_DependencyCheckOutputName>
67+
<DCC_ImageBase>00400000</DCC_ImageBase>
68+
<DCC_Platform>x86</DCC_Platform>
69+
</PropertyGroup>
70+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
71+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
72+
<DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
73+
<VerInfo_Locale>1033</VerInfo_Locale>
74+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
75+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
76+
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
77+
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
78+
</PropertyGroup>
79+
<PropertyGroup Condition="'$(Base_Win64)'!=''">
80+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
81+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
82+
<DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
83+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
84+
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
85+
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
86+
</PropertyGroup>
87+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
88+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
89+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
90+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
91+
<DCC_DebugInformation>0</DCC_DebugInformation>
92+
</PropertyGroup>
93+
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
94+
<BT_BuildType>Debug</BT_BuildType>
95+
</PropertyGroup>
96+
<PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
97+
<BT_BuildType>Debug</BT_BuildType>
98+
</PropertyGroup>
99+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
100+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
101+
</PropertyGroup>
102+
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
103+
<BT_BuildType>Debug</BT_BuildType>
104+
</PropertyGroup>
105+
<PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
106+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
107+
<BT_BuildType>Debug</BT_BuildType>
108+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
109+
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
110+
</PropertyGroup>
111+
<ItemGroup>
112+
<DelphiCompile Include="$(MainSource)">
113+
<MainSource>MainSource</MainSource>
114+
</DelphiCompile>
115+
<DCCReference Include="Unit1.pas">
116+
<Form>Form1</Form>
117+
</DCCReference>
118+
<BuildConfiguration Include="Debug">
119+
<Key>Cfg_2</Key>
120+
<CfgParent>Base</CfgParent>
121+
</BuildConfiguration>
122+
<BuildConfiguration Include="Base">
123+
<Key>Base</Key>
124+
</BuildConfiguration>
125+
<BuildConfiguration Include="Release">
126+
<Key>Cfg_1</Key>
127+
<CfgParent>Base</CfgParent>
128+
</BuildConfiguration>
129+
</ItemGroup>
130+
<Import Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')" Project="$(BDS)\Bin\CodeGear.Delphi.Targets"/>
131+
<ProjectExtensions>
132+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
133+
<Borland.ProjectType>VCLApplication</Borland.ProjectType>
134+
<BorlandProject>
135+
<Delphi.Personality>
136+
<Source>
137+
<Source Name="MainSource">Demo01.dpr</Source>
138+
</Source>
139+
<Parameters>
140+
<Parameters Name="UseLauncher">False</Parameters>
141+
<Parameters Name="LoadAllSymbols">True</Parameters>
142+
<Parameters Name="LoadUnspecifiedSymbols">False</Parameters>
143+
</Parameters>
144+
<VersionInfo>
145+
<VersionInfo Name="IncludeVerInfo">False</VersionInfo>
146+
<VersionInfo Name="AutoIncBuild">False</VersionInfo>
147+
<VersionInfo Name="MajorVer">1</VersionInfo>
148+
<VersionInfo Name="MinorVer">0</VersionInfo>
149+
<VersionInfo Name="Release">0</VersionInfo>
150+
<VersionInfo Name="Build">0</VersionInfo>
151+
<VersionInfo Name="Debug">False</VersionInfo>
152+
<VersionInfo Name="PreRelease">False</VersionInfo>
153+
<VersionInfo Name="Special">False</VersionInfo>
154+
<VersionInfo Name="Private">False</VersionInfo>
155+
<VersionInfo Name="DLL">False</VersionInfo>
156+
<VersionInfo Name="Locale">1033</VersionInfo>
157+
<VersionInfo Name="CodePage">1252</VersionInfo>
158+
</VersionInfo>
159+
<VersionInfoKeys>
160+
<VersionInfoKeys Name="CompanyName"/>
161+
<VersionInfoKeys Name="FileDescription"/>
162+
<VersionInfoKeys Name="FileVersion">1.0.0.0</VersionInfoKeys>
163+
<VersionInfoKeys Name="InternalName"/>
164+
<VersionInfoKeys Name="LegalCopyright"/>
165+
<VersionInfoKeys Name="LegalTrademarks"/>
166+
<VersionInfoKeys Name="OriginalFilename"/>
167+
<VersionInfoKeys Name="ProductName"/>
168+
<VersionInfoKeys Name="ProductVersion">1.0.0.0</VersionInfoKeys>
169+
<VersionInfoKeys Name="Comments"/>
170+
</VersionInfoKeys>
171+
<Excluded_Packages/>
172+
</Delphi.Personality>
173+
<Platforms>
174+
<Platform value="Win32">True</Platform>
175+
<Platform value="Win64">True</Platform>
176+
</Platforms>
177+
</BorlandProject>
178+
<ProjectFileVersion>12</ProjectFileVersion>
179+
</ProjectExtensions>
180+
<Import Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')" Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj"/>
181+
</Project>

Demos/Demo02/Demo02.dpr

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// JCL_DEBUG_EXPERT_GENERATEJDBG OFF
2+
// JCL_DEBUG_EXPERT_INSERTJDBG OFF
3+
// JCL_DEBUG_EXPERT_DELETEMAPFILE OFF
4+
program Demo02;
5+
6+
{$I Definition.Inc}
7+
8+
uses
9+
Forms,
10+
Unit1 in 'Unit1.pas' {Form1};
11+
12+
{$R *.res}
13+
14+
begin
15+
Application.Initialize;
16+
Application.CreateForm(TForm1, Form1);
17+
Application.Run;
18+
end.

0 commit comments

Comments
 (0)