You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only Linux and Macintosh compile-time requirement of PEB is a GCC-based Qt development bundle version 5.2 or any later version.
6
6
7
7
The source code of PEB is not MSVC-compatible and PEB can not be compiled using any MSVC-based Windows version of Qt. This means that:
8
-
1. PEB Windows binaries can be compiled only by a GCC-based Qt development bundle.
9
-
2. Only ``QtWebKit`` can be used by a Windows binary of PEB.
10
-
``QtWebEngine`` is included only in the MSVC-based Qt development bundles.
11
-
3. Updated ``QtWebKit`` headers and libraries have to be manually added from the
12
-
[QtWebKit repository of Konstantin Tokarev (annulen)](https://github.com/annulen/webkit/releases)for all Qt versions higher than 5.5.
8
+
* PEB Windows binaries can be compiled only by a GCC-based Qt development bundle.
9
+
* Only ```QtWebKit``` can be used by a Windows binary of PEB.
10
+
Windows GCC-based Qt development bundles version 5.6 or later have neither ```QtWebEngine```, nor ```QtWebKit```.
11
+
* Updated ``QtWebKit`` headers and libraries have to be manually added from the
12
+
[QtWebKit repository of Konstantin Tokarev (annulen)](https://github.com/annulen/webkit/releases)to all Windows GCC-based Qt development bundles version 5.6 or later.
13
13
14
14
Compiled and tested successfully using:
15
15
*[Qt Creator 3.0.0 and Qt 5.2.0](http://download.qt.io/archive/qt/5.2/5.2.0/) on 32-bit Debian and 32-bit Windows XP
@@ -29,38 +29,38 @@ make
29
29
## Compile-Time Settings
30
30
All compile-time settings require editing the ``src/peb.pro`` project file according to the following instructions.
31
31
32
-
* QtWebKit Use
33
-
To use ```QtWebKit``` or ```QtWebEngine``` depending on the Qt version, which is the default setting:
32
+
* QtWebKit Use
33
+
To use ```QtWebKit``` or ```QtWebEngine``` depending on the Qt version, which is the default setting:
34
34
35
-
```QMake
36
-
ANNULEN_QTWEBKIT = 0
37
-
```
35
+
```QMake
36
+
ANNULEN_QTWEBKIT = 0
37
+
```
38
38
39
-
The default web engine for Qt versions up to 5.5.x is ```QtWebKit```.
40
-
The default web engine for Qt versions 5.6.x or higher is ```QtWebEngine```.
39
+
The default web engine for Qt versions up to 5.5.x is ```QtWebKit```.
40
+
The default web engine for Qt versions 5.6.x or higher is ```QtWebEngine```.
41
41
42
-
To use [an updated QtWebKit version from the repository of Konstantin Tokarev (annulen)](https://github.com/annulen/webkit/releases) with a Qt version higher than 5.5:
42
+
To use [an updated QtWebKit version from the repository of Konstantin Tokarev (annulen)](https://github.com/annulen/webkit/releases) with a Qt version higher than 5.5:
43
43
44
-
```QMake
45
-
# ANNULEN_QTWEBKIT = 1
46
-
```
44
+
```QMake
45
+
ANNULEN_QTWEBKIT = 1
46
+
```
47
47
48
-
Setting ```ANNULEN_QTWEBKIT``` to ```1``` has no effect on Qt versions 5.5 or lower.
48
+
Setting ```ANNULEN_QTWEBKIT``` to ```1``` has no effect on Qt versions 5.5 or lower.
49
49
50
-
* Macintosh Bundle
51
-
To make a bundle-less binary, which is the default setting:
50
+
* Macintosh Bundle
51
+
To make a bundle-less binary, which is the default setting:
0 commit comments