• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

LICENSES/H03-May-2022-

cmake/templates/H07-Oct-2021-2117

src/H03-May-2022-9,8326,615

tests/H03-May-2022-497305

.gitignoreH A D07-Oct-202134 32

.gitlab-ci.ymlH A D07-Oct-2021252 75

.kde-ci.ymlH A D07-Oct-2021159 86

AUTHORSH A D07-Oct-2021313 128

READMEH A D07-Oct-20211.3 KiB3319

TODOH A D07-Oct-202170 32

metainfo.yamlH A D07-Oct-2021283 1312

README

1EXIV2 Library interface for KDE
2
3-- AUTHORS ------------------------------------------------------------
4
5See AUTHORS file for details.
6
7-- ABOUT --------------------------------------------------------------
8
9Libkexiv2 is a wrapper around Exiv2 library to manipulate pictures
10metadata as EXIF/IPTC and XMP. Metadata interface follow this paper:
11
12http://www.metadataworkinggroup.com/pdf/mwg_guidance.pdf
13
14The library documentation is available on header files.
15
16-- DEPENDENCIES -------------------------------------------------------
17
18CMake      >= 3.0.0                    https://www.cmake.org
19ECM        >= 1.1.0                    https://commits.kde.org/extra-cmake-modules
20libqt      >= 5.9.0                    https://qt.io
21libexiv2   >= 0.24.0                   https://www.exiv2.org
22
23-- INSTALL ------------------------------------------------------------
24
25Usual CMake options:
26
27-DCMAKE_INSTALL_PREFIX : decide where the program will be install on your computer.
28-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).
29
30Note: To know KDE install path on your computer, use 'kf5-config --prefix' command line like this (with debug object enabled):
31
32"cmake . -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix`"
33