Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminlong committed Apr 6, 2012
1 parent ddae56a commit e17eeae
Showing 1 changed file with 49 additions and 14 deletions.
63 changes: 49 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,60 @@
OVERVIEW
ResEdit
=======

Overview
--------

ResEdit is an open source application to delete/update/add resources to an Executable or DLL

PREREQUISTES
Qt need to be compiled in static
Otherwise after compiled the project, add new file SetEnv.bat into the executable directory
Prerequistes
------------

Qt need to be compiled in static !

Otherwise after compiled the project, add new file SetEnv.bat into the executable directory.

SetEnv.bat contains following two lines :

```
@ECHO OFF
set PATH=C:\work\Qt\qt-everywhere-opensource-src-4.7.3\bin;%PATH% //link to Qt/bin
```


Checkout, Configure and Build
-----------------------------

Use the following git command line to checkout the project :

git clone git://github.com/benjaminlong/ResEdit.git ResEdit

Then use cmake to configure and build.

Run
---
**1/ Go to the executable directory.**

If you have create the file SetEnv.bat, run the following command line first:

SetEnv.bat

**2/ Now you can run the application.**

Some examples of command lines :

CHECKOUT, CONFIGURE and BUILD
git clone git://github.com/benjaminlong/ResEdit.git ResEdit
then use cmake to configure and build.
* To show all the command lines:

RUN
ResEdit -help to show all the command lines
```
ResEdit --help
```
* To list all resources:

//--------------------
To list all resources:
```
ResEdit --list-resources Path/to/the/exe/or/dll
ResEdit -l Path/to/the/exe/or/dll
```
* To change the current ico file:

//--------------------
To change the current ico file:
ResEdit --update-resource-ico Path/to/the/exe/or/dll ResourceName Path/to/the/ico/resource
```
ResEdit --update-resource-ico Path/to/the/exe/or/dll ResourceName Path/to/the/ico/resource
```

0 comments on commit e17eeae

Please sign in to comment.