From 585825c73f94e340d6d6ac89933954bdc520b640 Mon Sep 17 00:00:00 2001 From: cryptonotefoundation Date: Wed, 29 Apr 2015 21:21:22 +0300 Subject: [PATCH] Add README.md --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..681feba --- /dev/null +++ b/README.md @@ -0,0 +1,33 @@ +**1. Clone wallet sources** + +``` +git clone https://github.com/cryptonotefoundation/cryptonotewallet.git +``` + +**2. Modify `CryptoNoteWallet.cmake`** + +``` +set(CN_PROJECT_NAME "furiouscoin") +set(CN_CURRENCY_DISPLAY_NAME "FuriousCoin") +set(CN_CURRENCY_TICKER "XFC") +``` + +**3. Set symbolic link to coin sources at the same level as `src`. For example:** + +``` +ln -s ../cryptonote cryptonote +``` + +Alternative way is to create git submodule: + +``` +git submodule add https://github.com/cryptonotefoundation/cryptonote.git cryptonote +``` + +Replace URL with git remote repository of your coin. + +**4. Build** + +``` +mkdir build && cmake .. && make +```