OSXBasedAnon / Unobtanium

Colder than CGB, Still shinier than BitBar
unobtanium.io
MIT License
5 stars 10 forks source link

Does not compile on linux #1

Closed jl2035 closed 10 years ago

jl2035 commented 10 years ago

This is the output from the terminal:

Project MESSAGE: Building with UPNP support Removed plural forms as the target language has less forms. If this sounds wrong, possibly the target language is not set or recognized. Removed plural forms as the target language has less forms. If this sounds wrong, possibly the target language is not set or recognized. Removed plural forms as the target language has less forms. If this sounds wrong, possibly the target language is not set or recognized. Removed plural forms as the target language has less forms. If this sounds wrong, possibly the target language is not set or recognized. RCC: Error in 'src/qt/bitcoin.qrc': Cannot find file 'res/icons/send.png' RCC: Error in 'src/qt/bitcoin.qrc': Cannot find file 'res/icons/receive.png' RCC: Error in 'src/qt/bitcoin.qrc': Cannot find file 'res/icons/overview.png'

QtCreator just says: :-1: error: [qrc_bitcoin.cpp] Error 1

how do I build this?

OSXBasedAnon commented 10 years ago

Can confirm this happens on arch linux as well

imsys commented 10 years ago

It just has to rename those icon files. Try this version: https://github.com/UnobtaniumCoin/Unobtanium

ghost commented 10 years ago

This is simply an issue with CASE in the /res/qt folders. I will replace them in the next release.

huanix commented 10 years ago

This hasn't been corrected as of 2014_02_09. The end user can fix this very easily by navigating to Unobtanium/src/qt/res/icons/ and copying or moving the files that begin with uppercase letters to lowercase letters.

This should work if you cloned to your home directory:

cp ~/Unobtanium/src/qt/res/icons/Send.png ~/Unobtanium/src/qt/res/icons/send.png cp ~/Unobtanium/src/qt/res/icons/Receive.png ~/Unobtanium/src/qt/res/icons/receive.png cp ~/Unobtanium/src/qt/res/icons/Overview.png ~/Unobtanium/src/qt/res/icons/overview.png