Skip to content

Commit 162b8cd

Browse files
committed
Updated README
1 parent ccc2d61 commit 162b8cd

File tree

3 files changed

+30
-15
lines changed

3 files changed

+30
-15
lines changed

Source/README.txt

+6-14
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,10 @@
1-
1. Environment setup
2-
3-
To be able to use compiled executables directly, please place the Source folder
4-
(the one this file you're looking at is placed in) in the root folder of a
5-
Dev-C++ installation. This makes sure that after compiling, devcpp.exe will end
6-
up in the right location so you end up with a usable and testable product right
7-
away.
8-
9-
2. Compiling devcpp.exe
1+
1. Compiling devcpp.exe
102

113
The main executable devcpp.exe can be built using the following steps:
124

135
1) Compile and install the following package(s):
146
Source\VCL\DevCpp.dpk
15-
Source\VCL\SynEditPackages\SynEdit_<Delphi Version>.dpk
7+
Source\VCL\SynEdit\Packages\SynEdit_<Delphi Version>.dpk
168
Source\VCL\ClassBrowsing\ClassBrowsing.dpk
179

1810
2) Compile resources by running the following script(s):
@@ -30,7 +22,7 @@ This process has only been tested using Delphi 6 and Delphi 7. The code base
3022
should be compatible with more recent versions of Delphi, but there is no
3123
guarantee anything will work.
3224

33-
3. Compiling associated tools
25+
2. Compiling associated tools
3426

3527
There are a couple of executables that need to be compiled and/or put in the
3628
right folder when building a release. These files can be found in the Tools
@@ -53,7 +45,7 @@ subfolder.
5345
Tools >> Package Manager and provides .pak plugin support. This file has
5446
not been touched since like 2005 so do what you wish with it.
5547

56-
4. Other tools
48+
3. Other tools
5749

5850
Other tools provided for legacy reasons or to easy the developer's life are:
5951

@@ -69,7 +61,7 @@ Other tools provided for legacy reasons or to easy the developer's life are:
6961

7062
4) PackMaker (legacy). Used to create PAK extension files.
7163

72-
5. UPX
64+
4. UPX
7365

7466
To decrease the main executable size, the old developers from Bloodshed used a
7567
program called UPX to compress it. Here is a copy of their instructions on how
@@ -83,7 +75,7 @@ of the provided compiler):
8375
Otherwise upx will compress all icons and the file associations will point
8476
to nonexisting (moved) icons within devcpp.exe
8577

86-
6. Shortcut Map
78+
5. Shortcut Map
8779

8880
This is an up to date map of the default shortcuts of Dev-C++. All Ctrl+(Letter)
8981
combinations are in use, except for the following letters: UJKL. The Shift

Source/Tools/GitPush/main.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@ int main() {
3636
// Add setup scripts
3737
GitAdd("*.nsi");
3838

39-
// Add project icon
39+
// Add project resources
40+
GitAdd("devcpp.exe.manifest");
4041
GitAdd("devcpp.ico");
4142

4243
// Add useful text files

devcpp.exe.manifest

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
3+
<assemblyIdentity
4+
version="1.0.0.0"
5+
processorArchitecture="*"
6+
name="CompanyName.ProductName.YourApplication"
7+
type="win32"
8+
/>
9+
<description>Your application description here.</description>
10+
<dependency>
11+
<dependentAssembly>
12+
<assemblyIdentity
13+
type="win32"
14+
name="Microsoft.Windows.Common-Controls"
15+
version="6.0.0.0"
16+
processorArchitecture="*"
17+
publicKeyToken="6595b64144ccf1df"
18+
language="*"
19+
/>
20+
</dependentAssembly>
21+
</dependency>
22+
</assembly>

0 commit comments

Comments
 (0)