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