mvf / qolibri

Continuation of the qolibri EPWING dictionary/book reader
GNU General Public License v2.0
168 stars 13 forks source link

Unable to build release 2.1.2, qmake fails #16

Closed exlevan closed 4 years ago

exlevan commented 5 years ago

According to the installation instructions in README.md, qmake; make should be used to build the application. However, the 2.1.2 release tarball lacks the qolibri.pro file, which is needed by qmake.

mvf commented 5 years ago

With 2.1.1 qolibri has switched to CMake, but the README wasn't updated yet. Assuming you're on Debian, this should work:

$ sudo apt install -y --no-install-recommends \
    cmake \
    g++ \
    libeb16-dev \
    make \
    qt5-default \
    qt5-qmake \
    qtbase5-dev \
    qtmultimedia5-dev \
    qttools5-dev \
    qttools5-dev-tools \
    qtwebengine5-dev \
    zlib1g-dev
$ cd qolibri-2.1.2
$ cmake .
$ make
mvf commented 4 years ago

README updated and build info moved to the wiki.