1How to install the dspdfviewer
2==============================
3
4
5
6System-specific installation instructions
7-----------------------------------------
8
9Please refer to the project's website for installation instructions,
10broken down by operating system.
11
12At least for Debian, Ubuntu, Gentoo, Arch, MacOS and Windows the website
13contains specific installation instructions. For some systems,
14ready-made binaries are provided.
15
16http://dspdfviewer.danny-edel.de
17
18
19
20Installation from source (generic cmake)
21----------------------------------------
22dspdfviewer requires the following build-time dependencies:
23  * cmake
24  * boost
25  * qt4
26  * poppler-qt4
27
28From inside the source directory, execute the following steps:
29
30mkdir build
31cd build
32cmake ..
33make
34(as root) make install
35
36Note that there is no make uninstall, so please redirect the make install
37step through your system's package management utility. The
38"cmake" step will respect --prefix= parameters, and "make install"
39will respect DESTDIR.
40
41
42
43Compiling against qt5 and poppler-qt5
44-------------------------------------
45There is now experimental support for compiling against qt5/libpoppler-qt5.
46
47To try it out, substitute the "cmake" step above against
48  cmake -DUseQtFive=ON ..
49