
Here you will Find Details on building your own Cryptokenz CYT Wallet
Building leveldb & Wallet on Windows
Building libleveldb
Please open up Msys and copy/paste these
cd /c/CYTN-master/src/leveldb
TARGET_OS=NATIVE_WINDOWS make libleveldb.a libmemenv.a
Building Wallet
MinGW & Msys Way
First place the correct dependency locations into the .pro file of Cryptokenz (Located in the src directory) Once done please open up Windows CMD with admin privelages (if you have them)
Copy and Paste these Please
cd yourdriveletter:\cytn-master
qmake "USE_QRCODE=1" "USE_UPNP=1" "USE_IPV6=1" cyt-qt.pro
mingw32-make -j(your number of cores plus 1 here)
Qt IDE Way
Open up qt creator and browse and locate Cryptokenz Src and open up cyt-qt.pro once loaded please configure it with the kit you have installed static or dynamic either work but please select release not debug. Once you have it configured double click the cyt-qt.pro file and place the dependencies into the .pro file then save after that all you have to do is select build and qt creator will do the rest displaying any errors in a box to the bottom of the screen named issues.
Building leveldb & Wallet on Linux
copy/paste these
sudo apt-get install git
sudo apt-get install qt4-qmake libqt4-dev build-essential libboost-dev libboost-system-dev libboost-filesystem-dev libboost-program-options-dev libboost-thread-dev libssl-dev libdb++-dev libminiupnpc-dev
qmake
sudo make
Building libleveldb
copy/paste these
cd CYTN-master/src/leveldb
sh build_detect_platform build_config.mk .
TARGET_OS=NATIVE_LINUX make libleveldb.a libmemenv.a
Building Wallet
For Cryptokend
copy/paste these
cd CYTN-master/src
make -f makefile.unix
For Cryptoken-Qt
copy/paste these
cd CYTN-master/
qmake cyt-qt.pro
make -f makefile.release
any issues with miniupnpc then please re-run qmake with the following
qmake cyt-qt.pro "USE_IPV6=-"