From a78b43fcc5d9ed74dd0f78f45919cb80ee2f94e1 Mon Sep 17 00:00:00 2001 From: zed Date: Mon, 7 Feb 2022 23:29:35 +0300 Subject: [PATCH] Update readme --- readme.md | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/readme.md b/readme.md index cde7da8..bcf1db2 100644 --- a/readme.md +++ b/readme.md @@ -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) @@ -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 -``` \ No newline at end of file +``` + +---- + +## 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 + ``` \ No newline at end of file