Warning, /graphics/libkdcraw/README is written in an unsupported language. File is not indexed.
0001 LibRaw C++ interface for KDE 0002 0003 -- AUTHORS ----------------------------------------------------------- 0004 0005 See AUTHORS file for details. 0006 0007 -- ABOUT ------------------------------------------------------------- 0008 0009 Libkdcraw is a C++ interface around LibRaw library used to decode RAW 0010 picture files. More information about LibRaw can be found at https://www.libraw.org. 0011 0012 The library documentation is available on header files. 0013 0014 -- DEPENDENCIES ------------------------------------------------------- 0015 0016 CMake >= 2.8.12 https://www.cmake.org 0017 ECM >= 1.1.0 https://commits.kde.org/extra-cmake-modules 0018 libqt >= 5.2.0 https://qt.io 0019 libraw >= 0.16.x https://www.libraw.org 0020 0021 -- INSTALL ------------------------------------------------------------ 0022 0023 Usual CMake options: 0024 0025 -DCMAKE_INSTALL_PREFIX : decide where the program will be install on your computer. 0026 -DCMAKE_BUILD_TYPE : decide which type of build you want. You can chose between "debug", "profile", "relwithdebinfo" and "release". The default is "relwithdebinfo" (-O2 -g). 0027 0028 Note: To know KDE install path on your computer, use 'kf5-config --prefix' command line like this (with debug object enabled): 0029 0030 "cmake . -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix`"