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

..03-May-2022-

cmake/templates/H05-Feb-2022-1,101774

common/H03-May-2022-14,2149,710

dropbox/H03-May-2022-1,8901,164

facebook/H03-May-2022-2,9021,888

flickr/H03-May-2022-5,2073,387

googleservices/H03-May-2022-5,4013,814

imageshack/H03-May-2022-2,3691,491

imgur/H03-May-2022-1,568997

jalbum/H03-May-2022-1,221742

kmlexport/H03-May-2022-2,6731,632

mediawiki/H03-May-2022-2,5121,748

piwigo/H03-May-2022-2,6641,748

po/H01-Mar-2022-353,779290,277

printimages/H03-May-2022-10,4457,940

project/H05-Feb-2022-2,0581,628

rajce/H07-May-2022-2,9071,817

remotestorage/H03-May-2022-1,459746

sendimages/H03-May-2022-2,5191,619

smug/H03-May-2022-3,8492,671

vkontakte/H03-May-2022-1,8971,117

yandexfotki/H03-May-2022-5,0763,224

.gitignoreH A D05-Feb-202286 1110

AUTHORSH A D05-Feb-20222.7 KiB5955

COPYINGH A D05-Feb-202217.7 KiB341281

COPYING-CMAKE-SCRIPTSH A D05-Feb-20221.3 KiB2320

ChangeLogH A D05-Feb-202210 MiB245,863183,912

HACKINGH A D05-Feb-202210.8 KiB309220

NEWSH A D05-Feb-2022160 84

READMEH A D05-Feb-20221.9 KiB5231

TODOH A D05-Feb-202250 21

org.kde.kipi_plugins.metainfo.xmlH A D05-Feb-202213.3 KiB164163

README

1KIPIPLUGINS PROJECT
2
3-- AUTHORS ------------------------------------------------------------
4
5See AUTHORS file for details.
6
7-- ABOUT --------------------------------------------------------------
8
9Libkipi and kipi-plugins allow image applications to use a plugin architecture for additional functionalities.
10
11Notes:
12
13kipi-plugins is based in part on the work of the Independent JPEG Group.
14
15-- BUGS ---------------------------------------------------------------
16
17IMPORTANT : the bugreports and wishlist are hosted by the KDE bugs report
18system who can be contacted by the standard Kde help menu of plugins dialog.
19
20The current Kipi bugs and devel wishes reported to the Kde bugs report can be
21seen at this url :
22
23http://bugs.kde.org/buglist.cgi?product=kipiplugins&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED
24
25-- INSTALL ------------------------------------------------------------
26
27In order to compile, especially when QT4/Qt5 are installed at the same time,
28just use something like that:
29
30# export VERBOSE=1
31# export QTDIR=/usr/lib/qt5/
32# export PATH=$QTDIR/bin:$PATH
33# cmake .
34# make
35# sudo make install
36
37Usual CMake options :
38
39-DCMAKE_INSTALL_PREFIX : decide where the program will be install on your computer.
40-DCMAKE_BUILD_TYPE     : decide which type of build you want. You can chose between "debugfull", "debug", "profile", "relwithdebinfo" and "release". The default is "relwithdebinfo" (-O2 -g).
41
42Compared to old autoconf options:
43
44"cmake . -DCMAKE_BUILD_TYPE=debugfull" is equivalent to "./configure --enable-debug=full"
45"cmake . -DCMAKE_INSTALL_PREFIX=/usr"  is equivalent to "./configure --prefix=/usr"
46
47More details can be found at this url: http://techbase.kde.org/Development/Tutorials/CMake#Environment_Variables
48
49Note: To know KDE install path on your computer, use 'kf5-config --prefix' command line like this (with full debug object enabled):
50
51"cmake . -DCMAKE_BUILD_TYPE=debugfull -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix`"
52