forked from koreader/crengine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
63 lines (45 loc) · 1.2 KB
/
README
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
CR3: CoolReader3 (c) Vadim Lopatin
==================================
based on CREngine library
uses wxWidgets as GUI library
==================================
HOWTO BUILD UNDER LINUX:
1) SOURCES
download sources of crengine, cr3 using CVS
download wxGTK, unpack and rename as wxWidgets
directory structure:
/home/user/src/
/crengine == crengine dir
/cr3 == cr3 dir
/wxWidgets == wxGTK dir
Create symlink from cr3/crengine to crengine in order to use Kdevelop project and autoconf makefile
2) build CREngine
cd crengine
./run_make_linux.sh
3) configure and build wxWidgets Release (if necessary)
cd cr3
./run_configure_wx_release
4) configure and build wxWidgets Debug (if necessary)
cd cr3
./run_configure_wx
5) configure and make CR3 Release
cd cr3
./run_configure_linux_release
cd optimized
make
cd src
strip cr3
mkdir fonts
#copy some .ttf fonts to optimized/src/fonts
#run cr3:
./cr3
6) configure and make CR3 Debug
cd cr3
./run_configure_linux
cd debug
make
cd src
mkdir fonts
#copy some .ttf fonts to debug/src/fonts
#run cr3:
./cr3