forked from LibRaw/LibRaw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL.CMAKE
94 lines (55 loc) · 2.58 KB
/
INSTALL.CMAKE
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
========= Installing LibRaw (CMake version) ==========
I. Installation steps
1. Unpack the distribution file:
$ tar xzvf LibRaw-0.xx.yy.tar.gz
2. If you wish to use LibRaw demosaic pack(s), unpack them in the same folder:
$ tar xzvf LibRaw-demosaic-pack-GPL2-0.xx.yy.tar.gz
$ tar xzvf LibRaw-demosaic-pack-GPL3-0.xx.yy.tar.gz
3. Go to LibRaw folder and run ./configure and make:
$ cd LibRaw-0.xx.yy
$ ./cmake [...optional args...] .
$ make
4. install by run make install as root:
$ sudo make install
II. ./cmake options
-DENABLE_OPENMP=ON/OFF
Enable/disable OpenMP support if compiler supports it.
OpenMP is enabled by default.
-DENABLE_LCMS=ON/OFF
Enable/disable LCMS color engine support. If enabled, ./cmake will try to
find lcms library. Both LCMS-1.x and LCMS-2.x are supported
LCMS support is enabled by default
-DENABLE_EXAMPLES=ON/OFF
Enables/disables examples compilation and installation. Enabled by default
-DENABLE_DEMOSAIC_PACK_GPL2=ON/OFF
-DDEMOSAIC_PACK_GPL2_RPATH=FOLDERNAME
-DCHECKOUT_DEMOSAIC_PACK_GPL2=ON/OFF
Enables/disables support of additional demosaic methods licensed under GPL2
You need to download and unpack LibRaw-demosaic-pack-GPL2 archive to use
this feature.
./cmake will try to find demosaic pack in:
a) If folder is specified via -DDDEMOSAIC_PACK_GPL2_RPATH=FOLDERNAME
command-line option, then only this folder will be checked.
b) If no folder is specified in -DDENABLE_DEMOSAIC_PACK_GPL2 switch:
./LibRaw-demosaic-pack-GPL2 (in LibRaw folder)
If DCHECKOUT_DEMOSAIC_PACK_GPL2 is enabled, code wil be checkout from remote repository
-DENABLE_DEMOSAIC_PACK_GPL3=ON/OFF
-DDEMOSAIC_PACK_GPL3_RPATH=FOLDERNAME
-DCHECKOUT_DEMOSAIC_PACK_GPL3=ON/OFF
Same as above, but for GPL3-licensed demosaic pack.
-DENABLE_RAWSPEED=ON/OFF
-DRAWSPEED_RPATH=FOLDERNAME
Enables/disables support of additional code from RawStudio project
You need to download RawSpeed source code to use this feature.
See README.RawSpeed.txt for details.
./cmake will try to find RawSpeed code in:
a) If folder is specified via -DRAWSPEED_RPATH=FOLDERNAME
command-line option, then only this folder will be checked.
b) If no folder is specified in -DENABLE_RAWSPEED switch:
./RawSpeed (in LibRaw folder)
<<<<<<< HEAD
=======
If CHECKOUT_RAWSPEED is enabled, code wil be checkout from remote repository
>>>>>>> 0eeff91... polish
-DENABLE_DCRAW_DEBUG=ON/OFF
Enables/disables support of additional debug traces from dcraw operations. Disabled by default