Files
SilentDragonXLite/README.md
2019-11-02 12:08:02 +01:00

21 lines
572 B
Markdown

# SilentDragonLite
SilentDragonLite is a GUI wallet for the Hush cryptocoin, which does not require you to download the full blockchain!
## Compiling from source
* SilentDragonLite is written in C++ 14, and can be compiled with g++/clang++/visual c++.
* It also depends on Qt5, which you can get from [here](https://www.qt.io/download).
* You'll need Rust v1.37 +
### Building on Linux
```
git clone https://github.com/MyHush/SilenDragonLite.git
cd silentdragonlite
/path/to/qt5/bin/qmake silentdragon-lite.pro CONFIG+=debug
make -j$(nproc)
./silentdragonlite
```