I also tried compiling the qt client from the latest github.
I've compiled several other *coin qt clients without any problems on my system, but cleanwatercoin-qt failed everything I've tried.
with qmake/make:
make says:
:0:2: error: no macro name given in #define directive
:0:1: error: macro names must be identifiers
make: *** [build/bitcoin.o] Error 1
...
Anyway, I'm glad other issues seem to be all fixed up... I'm mining away, waiting for the 0.00000100's or better...
Thanks!
Thank you for informing me about this... It's me to blame and a stupid space character (actually 2).
I will have it fixed in the new version, but you can fix it easily if you want to build it right now.
Open your cleanwatercoin-qt.pro file
You will find this:
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets
DEFINES += QT_DISABLE_DEPRECATED_BEFORE = 0
}
You see the spaces after the QT_DISABLE_DEPRECATED_BEFORE?
My stupid text editor thought it would be better if it had it with spaces, so it shows up better Oo
You should change it to:
greaterThan(QT_MAJOR_VERSION, 4) {
QT += widgets
DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0
}
(remove the spaces)
That was the problem and I'm very sorry I was the cause of all your troubles...