Update readme

This commit is contained in:
Michael Hansen
2014-06-10 19:26:53 -07:00
parent 4d21654134
commit 7dcd8b9c41

View File

@@ -13,18 +13,30 @@ As the name implies, Decompyle++ is written in C++.
If you wish to contribute, please fork us on github at
https://github.com/zrax/pycdc
## Usage
To compile Decompyle++, just run `make`.
## Building Decompyle++
* Generate a project or makefile with [CMake](http://www.cmake.org)
* For projects (e.g. MSVC), open the generated project file and build it
* For makefiles, just run `make`
* To run tests (\*nix or MSYS), run `make test`
## Usage
**To run pycdas**, the PYC Disassembler:
`./bin/pycdas [PATH TO PYC FILE]`
`./pycdas [PATH TO PYC FILE]`
The byte-code disassembly is printed to stdout.
**To run pycdc**, the PYC Decompiler:
`./bin/pycdc [PATH TO PYC FILE]`
`./pycdc [PATH TO PYC FILE]`
The decompiled Python source is printed to stdout.
Any errors are printed to stderr.
## Authors, Licence, Credits
Decompyle++ is the work of Michael Hansen and Darryl Pogue.
It is released under the terms of the GNU General Public License, version 3.
Additional contributions from:
* charlietang98
* Kunal Parmar
* Olivier Iffrig
* Zlodiy
It is released under the terms of the GNU General Public License, version 3;
See LICENSE file for details.