Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zedxxx committed Feb 7, 2022
1 parent ddc7082 commit a78b43f
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,16 @@
*Read this in other languages:* [Русский](readme.ru.md)
*Read this in other languages: [Русский](readme.ru.md)*

----

## Description

RccExtended - compiler and **decompiler** for binary Qt resources (files with the .rcc extension).

The utility allows you to edit the resources of Qt programs without having their sources.

Editing algorithm:

- unpack / decompile binary Qt resources (using this utility)
- unpack (decompile) binary Qt resources (using this utility)
- edit unpacked files (.png, .xml, etc.) by third-party tools
- compile of edited files back into binary Qt resources (using this utility)

Expand All @@ -29,6 +31,19 @@ Once launched, the utility performs the following actions:

Usage example:
```
cd \Path\To\MyQtResources\
cd /Path/To/My/QtResources
rcc --reverse
```
```

----

## How to build from sources?

Windows:

- install [MSYS2](https://www.msys2.org/wiki/MSYS2-installation/) environment
- install qt5-static package
- navigate to the `RccExtended/src` folder and run command:
```
qmake rcc.pro && make
```

0 comments on commit a78b43f

Please sign in to comment.