The guys over at cryptonote have created a GUI for all Cryptonote coins
https://forum.cryptonote.org/viewtopic.php?f=5&t=609
The Repository makes the creating of a wallet for the coin rather easy
https://github.com/cryptonotefoundation/cryptonotewallet
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 && cd build && cmake .. && make
Anyone who has a droplet or whatever can test this and build a linux gui and then also create a windows build out of it as well.