I downloaded the git-repository, but I was not able to build it.
QT Creator complained about missing kits.
The INSTALL file is talking about a doc folder that is not present in the git-repository.
Is something missing in git, or is it something with the configuration of QT Creator that I don't get?
Help appreciated.
You need to add your locations of the library files in qt.pro file, in the location where it says:
# Dependency library locations can be customized with:
# BOOST_INCLUDE_PATH, BOOST_LIB_PATH, BDB_INCLUDE_PATH,
# BDB_LIB_PATH, OPENSSL_INCLUDE_PATH and OPENSSL_LIB_PATH respectively
dev usually don't put their locations tehre because anyway it will not work for you. It will be something like this:
BOOST_LIB_SUFFIX=-mgw45-mt-s-1_55
BOOST_INCLUDE_PATH=C:/deps/boost_1_55_0
BOOST_LIB_PATH=C:/deps/boost_1_55_0/stage/lib
BDB_INCLUDE_PATH=C:/deps/db-4.8.30.NC/build_unix
BDB_LIB_PATH=C:/deps/db-4.8.30.NC/build_unix
OPENSSL_INCLUDE_PATH=C:/deps/openssl-1.0.1m/include
OPENSSL_LIB_PATH=C:/deps/openssl-1.0.1m
MINIUPNPC_INCLUDE_PATH=C:/deps
MINIUPNPC_LIB_PATH=C:/deps/miniupnpc
use your own path