Skip to content

Commit cb92ee7

Browse files
committed
some preparations
1 parent ee39d59 commit cb92ee7

7 files changed

Lines changed: 318 additions & 40 deletions

File tree

.gitignore

Lines changed: 69 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
# Uncomment these types if you want even more clean repository. But be careful.
2+
# It can make harm to an existing project source. Read explanations below.
3+
#
4+
# Resource files are binaries containing manifest, project icon and version info.
5+
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
6+
#*.res
7+
#
8+
# Type library file (binary). In old Delphi versions it should be stored.
9+
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
10+
#*.tlb
11+
#
12+
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
13+
# Uncomment this if you are not using diagrams or use newer Delphi version.
14+
#*.ddp
15+
#
16+
# Visual LiveBindings file. Added in Delphi XE2.
17+
# Uncomment this if you are not using LiveBindings Designer.
18+
#*.vlb
19+
#
20+
# Deployment Manager configuration file for your project. Added in Delphi XE2.
21+
# Uncomment this if it is not mobile development and you do not use remote debug feature.
22+
#*.deployproj
23+
#
24+
# C++ object files produced when C/C++ Output file generation is configured.
25+
# Uncomment this if you are not using external objects (zlib library for example).
26+
#*.obj
27+
#
28+
29+
Win32
30+
Win64
31+
32+
# Delphi compiler-generated binaries (safe to delete)
33+
*.exe
34+
*.dll
35+
*.bpl
36+
*.bpi
37+
*.dcp
38+
*.so
39+
*.apk
40+
*.drc
41+
*.map
42+
*.dres
43+
*.rsm
44+
*.tds
45+
*.dcu
46+
*.lib
47+
*.a
48+
*.o
49+
*.ocx
50+
51+
# Delphi autogenerated files (duplicated info)
52+
*.cfg
53+
*.hpp
54+
*Resource.rc
55+
56+
# Delphi local files (user-specific info)
57+
*.local
58+
*.identcache
59+
*.projdata
60+
*.tvsconfig
61+
*.dsk
62+
63+
# Delphi history and backups
64+
__history/
65+
__recovery/
66+
*.~*
67+
68+
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
69+
*.stat

PdftkBuilder.dproj

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<ProjectGuid>{2282192C-F598-477A-8EAD-655FF8921CCF}</ProjectGuid>
4+
<MainSource>PdftkBuilder.dpr</MainSource>
5+
<Base>True</Base>
6+
<Config Condition="'$(Config)'==''">Debug</Config>
7+
<TargetedPlatforms>3</TargetedPlatforms>
8+
<AppType>Application</AppType>
9+
<FrameworkType>VCL</FrameworkType>
10+
<ProjectVersion>19.1</ProjectVersion>
11+
<Platform Condition="'$(Platform)'==''">Win32</Platform>
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)'=='Release' 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="('$(Platform)'=='Win64' and '$(Cfg_1)'=='true') or '$(Cfg_1_Win64)'!=''">
38+
<Cfg_1_Win64>true</Cfg_1_Win64>
39+
<CfgParent>Cfg_1</CfgParent>
40+
<Cfg_1>true</Cfg_1>
41+
<Base>true</Base>
42+
</PropertyGroup>
43+
<PropertyGroup Condition="'$(Config)'=='Debug' or '$(Cfg_2)'!=''">
44+
<Cfg_2>true</Cfg_2>
45+
<CfgParent>Base</CfgParent>
46+
<Base>true</Base>
47+
</PropertyGroup>
48+
<PropertyGroup Condition="('$(Platform)'=='OSX64' and '$(Cfg_2)'=='true') or '$(Cfg_2_OSX64)'!=''">
49+
<Cfg_2_OSX64>true</Cfg_2_OSX64>
50+
<CfgParent>Cfg_2</CfgParent>
51+
<Cfg_2>true</Cfg_2>
52+
<Base>true</Base>
53+
</PropertyGroup>
54+
<PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''">
55+
<Cfg_2_Win32>true</Cfg_2_Win32>
56+
<CfgParent>Cfg_2</CfgParent>
57+
<Cfg_2>true</Cfg_2>
58+
<Base>true</Base>
59+
</PropertyGroup>
60+
<PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win64)'!=''">
61+
<Cfg_2_Win64>true</Cfg_2_Win64>
62+
<CfgParent>Cfg_2</CfgParent>
63+
<Cfg_2>true</Cfg_2>
64+
<Base>true</Base>
65+
</PropertyGroup>
66+
<PropertyGroup Condition="'$(Base)'!=''">
67+
<DCC_E>false</DCC_E>
68+
<DCC_F>false</DCC_F>
69+
<DCC_K>false</DCC_K>
70+
<DCC_N>false</DCC_N>
71+
<DCC_S>false</DCC_S>
72+
<DCC_ImageBase>00400000</DCC_ImageBase>
73+
<SanitizedProjectName>PdftkBuilder</SanitizedProjectName>
74+
<DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;Winapi;$(DCC_Namespace)</DCC_Namespace>
75+
<VerInfo_Locale>1031</VerInfo_Locale>
76+
<VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=</VerInfo_Keys>
77+
<DCC_ExeOutput>.\$(Platform)\$(Config)</DCC_ExeOutput>
78+
<DCC_DcuOutput>.\$(Platform)\$(Config)</DCC_DcuOutput>
79+
</PropertyGroup>
80+
<PropertyGroup Condition="'$(Base_Win32)'!=''">
81+
<DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace>
82+
<BT_BuildType>Debug</BT_BuildType>
83+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
84+
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
85+
<VerInfo_Locale>1033</VerInfo_Locale>
86+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
87+
<Icon_MainIcon>PdftkBuilder_Icon.ico</Icon_MainIcon>
88+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
89+
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
90+
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
91+
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
92+
</PropertyGroup>
93+
<PropertyGroup Condition="'$(Base_Win64)'!=''">
94+
<Manifest_File>$(BDS)\bin\default_app.manifest</Manifest_File>
95+
<Icon_MainIcon>PdftkBuilder_Icon.ico</Icon_MainIcon>
96+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
97+
<UWP_DelphiLogo44>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_44.png</UWP_DelphiLogo44>
98+
<UWP_DelphiLogo150>$(BDS)\bin\Artwork\Windows\UWP\delphi_UwpDefault_150.png</UWP_DelphiLogo150>
99+
<DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
100+
<BT_BuildType>Debug</BT_BuildType>
101+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
102+
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
103+
<VerInfo_Locale>1033</VerInfo_Locale>
104+
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
105+
</PropertyGroup>
106+
<PropertyGroup Condition="'$(Cfg_1)'!=''">
107+
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
108+
<DCC_DebugInformation>0</DCC_DebugInformation>
109+
<DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols>
110+
<DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo>
111+
</PropertyGroup>
112+
<PropertyGroup Condition="'$(Cfg_1_Win32)'!=''">
113+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
114+
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
115+
</PropertyGroup>
116+
<PropertyGroup Condition="'$(Cfg_1_Win64)'!=''">
117+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
118+
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
119+
</PropertyGroup>
120+
<PropertyGroup Condition="'$(Cfg_2)'!=''">
121+
<DCC_Define>DEBUG;$(DCC_Define)</DCC_Define>
122+
<DCC_Optimize>false</DCC_Optimize>
123+
<DCC_GenerateStackFrames>true</DCC_GenerateStackFrames>
124+
</PropertyGroup>
125+
<PropertyGroup Condition="'$(Cfg_2_OSX64)'!=''">
126+
<BT_BuildType>Debug</BT_BuildType>
127+
</PropertyGroup>
128+
<PropertyGroup Condition="'$(Cfg_2_Win32)'!=''">
129+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
130+
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
131+
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
132+
<VerInfo_Locale>1033</VerInfo_Locale>
133+
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=;ProgramID=com.embarcadero.$(MSBuildProjectName)</VerInfo_Keys>
134+
</PropertyGroup>
135+
<PropertyGroup Condition="'$(Cfg_2_Win64)'!=''">
136+
<AppEnableRuntimeThemes>true</AppEnableRuntimeThemes>
137+
<AppDPIAwarenessMode>PerMonitorV2</AppDPIAwarenessMode>
138+
</PropertyGroup>
139+
<ItemGroup>
140+
<DelphiCompile Include="$(MainSource)">
141+
<MainSource>MainSource</MainSource>
142+
</DelphiCompile>
143+
<DCCReference Include="main.pas">
144+
<Form>MainForm</Form>
145+
</DCCReference>
146+
<DCCReference Include="about.pas">
147+
<Form>AboutForm</Form>
148+
</DCCReference>
149+
<BuildConfiguration Include="Debug">
150+
<Key>Cfg_2</Key>
151+
<CfgParent>Base</CfgParent>
152+
</BuildConfiguration>
153+
<BuildConfiguration Include="Base">
154+
<Key>Base</Key>
155+
</BuildConfiguration>
156+
<BuildConfiguration Include="Release">
157+
<Key>Cfg_1</Key>
158+
<CfgParent>Base</CfgParent>
159+
</BuildConfiguration>
160+
</ItemGroup>
161+
<ProjectExtensions>
162+
<Borland.Personality>Delphi.Personality.12</Borland.Personality>
163+
<Borland.ProjectType/>
164+
<BorlandProject>
165+
<Delphi.Personality>
166+
<Source>
167+
<Source Name="MainSource">PdftkBuilder.dpr</Source>
168+
</Source>
169+
<Excluded_Packages>
170+
<Excluded_Packages Name="$(BDSBIN)\dcloffice2k270.bpl">Microsoft Office 2000 Beispiele für gekapselte Komponenten für Automatisierungsserver</Excluded_Packages>
171+
<Excluded_Packages Name="$(BDSBIN)\dclofficexp270.bpl">Microsoft Office XP Beispiele für gekapselte Komponenten für Automation Server</Excluded_Packages>
172+
</Excluded_Packages>
173+
</Delphi.Personality>
174+
<Platforms>
175+
<Platform value="OSX64">False</Platform>
176+
<Platform value="Win32">True</Platform>
177+
<Platform value="Win64">True</Platform>
178+
</Platforms>
179+
</BorlandProject>
180+
<ProjectFileVersion>12</ProjectFileVersion>
181+
</ProjectExtensions>
182+
<Import Project="$(BDS)\Bin\CodeGear.Delphi.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Delphi.Targets')"/>
183+
<Import Project="$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj" Condition="Exists('$(APPDATA)\Embarcadero\$(BDSAPPDATABASEDIR)\$(PRODUCTVERSION)\UserTools.proj')"/>
184+
</Project>

PdftkBuilder.res

108 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)