forked from Sigil-Ebook/Sigil
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Building_Sigil_on_Windows.html
117 lines (115 loc) · 15 KB
/
Building_Sigil_on_Windows.html
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!doctype html>
<html>
<head>
<meta charset='UTF-8'><meta name='viewport' content='width=device-width initial-scale=1'>
<title>Building_Sigil_on_Windows</title></head>
<body><h1><center>Building Sigil on Windows</center></h1>
<h2>General Overview</h2>
<p>To build Sigil on Windows, you need to get/do the following things:</p>
<ol start='' >
<li><a href='#vsstudio'>Visual Studio 2017</a> The free Community Edition will work fine</li>
<li><a href='#cmake'>CMake</a> (3.0 or higher)</li>
<li><a href='#inno'>Inno Setup</a> (the latest Unicode version available recommended)</li>
<li><a href='#qt5'>Qt5.12.6/QtWebEngine</a> (<strong>NOTE</strong>: The standard precompiled binaries will work but Sigil patches a few things)</li>
<li><a href='#python'>Python 3.7.x</a></li>
<li><a href='#sigil'>The Sigil source code</a> (downloaded zipfile or a git clone)</li>
<li><a href='#build'>Building Sigil</a></li>
<li><a href='#advanced'>Advanced stuff</a></li>
</ol>
<h2><a name="vsstudio"/>Visual Studio</h2>
<p>Sigil is built with VS2017 in the latest versions of Sigil. Begin with making sure you have a working version of <a href='https://visualstudio.microsoft.com/vs/community/'>Visual Studio</a>, (the free Community edition will work fine).</p>
<p>The instructions given here will focus on using the command-line cmake and nmake tools. But if you're more comfortable in an IDE, you should find sufficient instructions to get you going. I simply don't use the IDE. Too many fiddly bits (sign-ins and expiring licenses for free software) for my taste. But it did work the last time I tried it.</p>
<p>From the Start button (you're on your own if you don't have one), go to "All Programs->Visual Studio 2017" and find the command prompt you'll need for your platform. Probably "VS2017 x64 Native Tools Command Prompt" for building a 64-bit package. If you're going to be building 32-bit packages, then use the "VS2017 x86 Native Tools Command Prompt". Create a shortcut to the applicable command-prompt on your Desktop. That's what you'll be using to configure and build Sigil.</p>
<p>If you're going to use the Visual Studio IDE and cmake-gui, you won't need to use these command-prompts.</p>
<h2><a name="cmake"/>Getting CMake</h2>
<p>CMake 3.0 or better is required. I'm using 3.12.x Download it from <a href='http://www.cmake.org'>cmake.org</a> and install it. <strong>Make sure CMake's "bin" directory (the one containing "cmake.exe") is added to your PATH</strong>.</p>
<h2><a name="inno"/>Inno Setup</h2>
<p>Get the unicode version (5.5.9 at the time of this writing) from <a href='http://www.jrsoftware.org/isdl.php'>jrsoftware.org</a> make sure you say yes to the Preprocessor option when installing. <strong>Also make sure the Inno Setup directory (the one containing "ISCC.exe") is added to your PATH</strong>. There is no 64-bit version of Inno Setup, but you can still use it to create 64-bit program installers.</p>
<h2><a name="qt5"/>Qt5.12.6</h2>
<p>Download qt-opensource-windows-x86-5.12.6.exe from <a href='http://download.qt.io/archive/qt/5.12/5.12.3'>Qt's Website</a> and install the msvc2017_64, or msvc2017 component (depending on the architecture you will be building Sigil for). You can install both msvc2017_64 and msvc2017 if you like. Also install the QtWebEngine component.</p>
<p>If you want to use the exact, patched versions of Qt5.12.6 and QtWebEngine that I've used to release Sigil, feel free to download the whole shebang <a href='https://github.com/dougmassay/win-qtwebkit-5.212/releases/tag/v5.212-1'>from my personal repository</a>. It's the archive named: MyQtx64-5.12.6_VS2017_WE.7z (NOTE: you're on your own with a 32-bit version).</p>
<p>Once you have Qt5.12.6 for Visual Studio installed, <strong>make sure its "bin" directory (the one containing "windeployqt.exe) is added to your PATH</strong></p>
<h2><a name="python"/>Getting Python 3.7</h2>
<p><strong>This is important</strong>. If you're going to be building the 64-bit version of Sigil, you need to install the 64-bit version of Python 3.7. If you're building a 32-bit version of Sigil then you need to install a 32-bit version of Python 3.7.</p>
<p>The official Windows Sigil installer uses Python 3.7 from <a href='http://www.python.org'>Python.org</a> (3.7.2 at the time of this writing). Other flavors of Python may work, but you're on your own if they don't. Download it and install it. If you install somewhere that requires special privileges to add/remove files, you may need to use an administator command prompt to install Sigil's extra Python module dependencies. <strong>I recommend installing Python to the default location ($USER/appdata) to avoid that problem. I also recommend allowing the Python installer to add Python to your PATH</strong>. This will make it easier for Sigil to locate the necessary Python pieces it needs, and will make it easy to install the extra Python modules using Pythons "pip" tool. I'm going to assume you've done so for the rest of these instructions.</p>
<h3>Getting the extra Python module dependencies</h3>
<p>After installing Python 3.7, I recommend making sure Python's pip/setuptools is updated to the latest version. The easiest way to do this is to open a command prompt (the shortcut to the VS2015 command prompt you made on your desktop <a href='#vs2015'>in step 1</a> will work fine) and type:</p>
<blockquote><p><code>python -m pip install -U pip</code></p>
</blockquote>
<p>Once finished, you can begin to install the extra modules needed by Sigil.</p>
<ul>
<li>six</li>
<li>html5lib</li>
<li>regex (2019.3.12 minimum required starting with Sigil 0.9.14)</li>
<li>cssselect</li>
<li>css-parser</li>
<li>chardet</li>
<li>Pillow (v6.2.1 recommended/verified)</li>
<li>lxml (v4.4.2 recommended/verified)</li>
<li>PyQt5 (5.12.3 recommended/verified)</li>
</ul>
<p>From the same command prompt you updated pip with, install the "six" module with the following command:</p>
<blockquote><p><code>pip install six</code></p>
</blockquote>
<p>Repeat for the next five modules:</p>
<blockquote><p><code>pip install html5lib</code></p>
</blockquote>
<p>etc...</p>
<h3>Installing Pillow</h3>
<p>Other versions of Pillow may work fine, but Sigil's installer build is predicated on v5.4.1, To install that specific version, use the following pip command.</p>
<blockquote><p><code>pip install Pillow==6.2.1</code></p>
</blockquote>
<h3>Installing lxml.</h3>
<p>Version 4.3.2 comes with precompiled binary wheels for Windows. Not all versions do. So if you want to install a different version, you'll need to find out if there's precompiled binaries for Windows or not. Install a specific version with pip using the following command</p>
<blockquote><p><code>pip install lxml==4.4.2</code></p>
</blockquote>
<h3>Installing PyQt5.</h3>
<p>Like lxml, not all versions of PyQt5 will have compatible binaries that will work with Sigil's Qt5 and Python. Stick to version 5.12.3 and everything should work with Python 3.7 and Qt5.12.6 (the trick is to always select a version of PyQt that will work with Sigil's version of Qt and Python)</p>
<blockquote><p>`pip install PyQt5==5.12.3 PyQt5-sip==4.19.18</p>
</blockquote>
<h2><a name="sigil"/>Getting Sigil's Source Code</h2>
<p>You can clone the Sigil Github repository (Requires a Windows git client - I use the <a href='https://github.com/git-for-windows/git/releases/latest'>portable version from here</a>):</p>
<blockquote><p><code>git clone https://github.com/Sigil-Ebook/Sigil.git</code></p>
</blockquote>
<p>Or you can download a specific release's zipfile from Sigil's <a href='https://github.com/Sigil-Ebook/Sigil/releases/latest'>releases page</a> on Github (0.9.10 at the time of this writing).</p>
<p>I recommend the latter method, as the github repository version might not always be stable at any given moment (even though we try hard not to leave it broken).</p>
<p>Unzip the source code. Rename the uppermost directory to something useful like "sigil-src". Unless you like typing extra-long directory names in command-prompts--in which case, don't rename it. Remember this location, you'll need it when generating the nmake makefiles with cmake</p>
<h3>Preparing Sigil's Source Code</h3>
<p>To build the Sigil installer package, you'll need to copy the Visual Studio 2017 redistributable runtime installer to the <code><sigil-src>\installer</code> folder (the one that contains the Sigil.iss file). These redistributable files can usually be found somewhere in Visual Studio's folder structure:</p>
<p><code>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Redist\MSVC\14.XX.XXXXX\</code></p>
<p>vcredist_x64.exe for 64-bit builds, and vcredist_x86.exe for 32-bit builds.</p>
<p><strong>The file names are important so don't rename them</strong>. Just copy the appropriate one to the "installer" folder in Sigil's source mentioned above.</p>
<h2><a name="build"/>Configuring and building Sigil (and the Sigil installer package)</h2>
<h3>Configuring Sigil with cmake</h3>
<p>With all the pre-requisites met and all the necessary additions to your PATH, the only thing left to do is generate the Sigil makefiles with cmake.</p>
<p>Using the shortcut to the proper VSStudio command-prompt created in <a href='#vsstudio'>step 1</a>, cd to a suitable empty directory for building Sigil (I recommend "sigil-build", or some such similar name), and issue the following command:</p>
<blockquote><p><code>cmake -G "NMake Makefiles" -DWIN_INSTALLER_USE_64BIT_CRT=1 -DQt5_DIR="C:\Qt\Qt5.12.3\5.12.6\mscv2017_64\lib\cmake\Qt5" -DCMAKE_BUILD_TYPE=Release "C:\path\to\sigil-src"</code></p>
</blockquote>
<p>Leave out the -DWIN_INSTALLER_USE_64BIT_CRT=1 part if you're building a 32-bit version of Sigil with the "VS2017 x86 Native Tools Command Prompt" shortcut.</p>
<p>Obviously change the paths to match where you've actually installed Qt5.12.6 and the Sigil source code. For instance: using my Specially compiled version of Qt5/WebEngine, it would look like:</p>
<p><code>cmake -G "NMake Makefiles" -DWIN_INSTALLER_USE_64BIT_CRT=1 -DQt5_DIR="C:\MyQtx64_WE\Qt5.12.6\lib\cmake\Qt5" -DCMAKE_BUILD_TYPE=Release "C:\path\to\sigil-src"</code></p>
<p><strong>NOTE</strong>: The -DQt5_DIR will be "C:\Qt\Qt5.12.6\5.12.6\mscv2017(_64)\lib\cmake\Qt5" if you installed the standard Qt5.12.6 to its default location</p>
<p>If this completes successfully, then you're ready to compile Sigil (leave the command prompt open).</p>
<p>You can also generate Visual Studio Project/Solution Files with cmake by using:</p>
<blockquote><p><code>cmake -G "Visual Studio 14 2017 Win64" WIN_INSTALLER_USE_64BIT_CRT=1 -DQt5_DIR="C:\Qt\Qt5.12.6\5.12.6\mscv2017(_64)\lib\cmake\Qt5" -DCMAKE_BUILD_TYPE=Release "C:\path\to\sigil-src"</code></p>
</blockquote>
<p>Leave off "Win64" and -DWIN_INSTALLER_USE_64BIT_CRT=1 if you're building the 32-bit version of Sigil.</p>
<p>You can also use cmake-gui (double-click on cmake-gui in the cmake/bin directory) and avoid using the command-prompt altogether if you wish (although you're on your own in figuring out how to enter all the cmake configuration options in the gui).</p>
<p>The following three cmake options are used to manually specify which Python3 you want to use when building Sigil instead of relying on the included cmake utilities to try and automatically find a suitable version. They can come in handy it you have multiple versions of Python 3 installed on your computer.</p>
<p>-DPYTHON_LIBRARY=<code><the full path to the python3.x library (ex. python37.lib)></code></p>
<p>-DPYTHON_INCLUDE_DIR=<code><the path to the directory where python3.x's header files (python.h) can be found></code></p>
<p>-DPYTHON_EXECUTABLE=<code><the full path to the python3.x binary (python.exe)></code></p>
<p>If you don't want to build/include the bundled Python environment in the Sigil installer, use the -DPKG_SYSTEM_PYTHON=0 in the CMake configure command to disable it. <strong>NOTE</strong>: you'll have to configure an external Python interpeter for running Sigil plugins. The "Use Bundled Python" feature will be unavailable.</p>
<h3>Compiling Sigil</h3>
<p>If you generated NMake Makefiles with cmake (like I do), then compile Sigil by typing <code>nmake</code> (at the same command-prompt you just configured with) to begin building Sigil. If it completes without error, you're ready to build the installer package (leave the command prompt open).</p>
<p>If you generated Visual Studio 2017 projects/solutions, then open the Sigil.sln file in the build directory; make sure the solution configuration is set to "Release"; select the ALL_BUILD project in the Solution Explorer and build the ALL_BUILD project from the Build menu (Build->Build ALL_BUILD). <strong>Note: don't build the solution</strong>. If it completes without error, you're ready to build the installer package. It is not possible at this time build a Debug version of Sigil with Visual Studio. So make sure the solution configuration is changed to build "Release" only.</p>
<h3>Building the Sigil installer package</h3>
<p>If you generated NMake Makefiles and have successfully compiled Sigil, then type <code>nmake makeinstaller</code> (at the same command prompt you just compiled Sigil with) to build the Sigil installer package. If it completes succesfully, the Sigil installer will be placed in the sigil-build directory's "installer" folder (NOTE: that's the <em>build</em> directory and not the <em>source</em> directory). If it doesn't complete succesfully, you may have to delete the "temp_folder" in the build directory before proceeding.</p>
<p>If you generated Visual Studio 2017 project/solutions and have built the ALL_BUILD project successfully, then select the "makeinstaller" project in the Solution Explorer and build the makeinstaller project from the Build menu (Build->Build makeinstaller). If it completes succesfully, the Sigil installer will be placed in the sigil-build directory's "installer" folder (NOTE: that's the <em>build</em> directory and not the <em>source</em> directory). If it doesn't complete succesfully, you may have to delete the "temp_folder" in the build directory before proceeding.</p>
<h2><a name="advanced"/>Advanced</h2>
<h3>Environment Variables</h3>
<p>The following are environment variables that can be set at runtime to affect how Sigil is run after building/installing.</p>
<p>SIGIL_PREFS_DIR - Changes where sigil looks for and updates its user preference data. Needs to specify a full path in a directory where the user has write privileges.</p>
<p>SIGIL_USES_DARK_MODE=(0|1) - Sigil will use the Windows dark mode setting to determine if it should start in light or darkmode. Should you wish to override this behavior (or enable dark mode on systems that do not have a dark theme), use this variable appropriately.</p>
</body>
</html>