Interesting coin...
But the qtwallet doesn't seem to want to compile, at at least for me. Fairly standard Ubuntu 14.04 setup.
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/libcrypto.a(dso_dlfcn.o): undefined reference to symbol 'dlclose@@GLIBC_2.2.5'
//lib/x86_64-linux-gnu/libdl.so.2: error adding symbols: DSO missing from command line
I haven't gotten this error before. The CMake project should include everything it needs... Can you try with the latest version of CMake?
Using 2.8.12.2, standard for Ubuntu 14.04. Thanks though. Would like to have a closer look at this one.
I did a fresh install of Ubuntu 14.04 LTS, as discussed. Compile fails, may be more than one reason but one is that libboost1.54 is the default version for Ubuntu 14.04.
Was pretty thorough, but ended up with the same original error. I tried upgrading libboost, numerous other things. always comes back to the error above.
What if, at the end of CMakeLists.txt (the one in the source directory), you add:
set (CMAKE_CXX_LINK_EXECUTABLE "${CMAKE_CXX_LINK_EXECUTABLE} -ldl")
Then re-run cmake.
Also I have been compiling on Ubnutu 12.04 LTS - if the above does not work can you try a clean install of that?