rawTherapee/INSTALL
Lawrence Lee 638ecc4cde Squashed 'rtengine/libraw/' content from commit cccb97647
git-subtree-dir: rtengine/libraw
git-subtree-split: cccb97647fcee56801fa68231fa8a38aa8b52ef7
2023-11-12 11:49:00 -08:00

52 lines
1.1 KiB
Plaintext

========= Installing LibRaw ========
I. Installation steps
1. Unpack the distribution file:
$ tar xzvf LibRaw-0.xx.yy.tar.gz
2. Go to LibRaw folder and run ./configure and make:
$ cd LibRaw-0.xx.yy
$ ./configure [...optional args...]
$ make
3. install by run make install as root:
$ sudo make install
If you're using Github snapshot, create ./configure script:
autoreconf --install
before using it (you'll need autotools installed).
Alternatively, you may use pre-created Makefiles (Makefile.dist for Unix,
Makefile.msvc for Windows/VisualStudio) and add/remove options by editing
these Makefiles
II. ./configure options
--enable-openmp
--disable-openmp
Enable/disable OpenMP support if compiler supports it.
OpenMP is enabled by default.
--enable-lcms
--disable-lcms
Enable/disable LCMS color engine support. If enabled, ./configure will try to
find lcms library. Both LCMS-1.x and LCMS-2.x are supported
LCMS support is enabled by default
--enable-examples
--disable-examples
Enables/disables examples compilation and installation. Enabled by default