~ubuntu-branches/ubuntu/saucy/digikam/saucy

« back to all changes in this revision

Viewing changes to extra/kipi-plugins/batchprocessimages/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Felix Geyer, Rohan Garg, Philip Muškovac, Felix Geyer
  • Date: 2011-09-23 18:18:55 UTC
  • mfrom: (1.2.36 upstream)
  • Revision ID: package-import@ubuntu.com-20110923181855-ifs67wxkugshev9k
Tags: 2:2.1.1-0ubuntu1
[ Rohan Garg ]
* New upstream release (LP: #834190)
  - debian/control
    + Build with libqtwebkit-dev
 - debian/kipi-plugins-common
    + Install libkvkontakte required by kipi-plugins
 - debian/digikam
    + Install panoramagui

[ Philip Muškovac ]
* New upstream release
  - debian/control:
    + Add libcv-dev, libcvaux-dev, libhighgui-dev, libboost-graph1.46-dev,
      libksane-dev, libxml2-dev, libxslt-dev, libqt4-opengl-dev, libqjson-dev,
      libgpod-dev and libqca2-dev to build-deps
    + Add packages for kipi-plugins, libmediawiki, libkface, libkgeomap and
      libkvkontakte
  - debian/rules:
    + Don't build with gphoto2 since it doesn't build with it.
  - Add kubuntu_fix_test_linking.diff to fix linking of the dngconverter test
  - update install files
  - update kubuntu_01_mysqld_executable_name.diff for new cmake layout
    and rename to kubuntu_mysqld_executable_name.diff
* Fix typo in digikam-data description (LP: #804894)
* Fix Vcs links

[ Felix Geyer ]
* Move library data files to the new packages libkface-data, libkgeomap-data
  and libkvkontakte-data.
* Override version of the embedded library packages to 1.0~digikam<version>.
* Exclude the library packages from digikam-dbg to prevent file conflicts in
  the future.
* Call dh_install with --list-missing.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SUBDIRS(icons)
 
2
 
 
3
FIND_PACKAGE(KDE4 REQUIRED)
 
4
 
 
5
ADD_DEFINITIONS(${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
 
6
 
 
7
INCLUDE(KDE4Defaults)
 
8
INCLUDE(MacroLibrary)
 
9
 
 
10
INCLUDE_DIRECTORIES(${CMAKE_CURRENT_SOURCE_DIR}/common
 
11
                    ${CMAKE_CURRENT_SOURCE_DIR}/plugin
 
12
                    ${CMAKE_CURRENT_SOURCE_DIR}/tools
 
13
                    ${KDE4_INCLUDES}
 
14
                    ${KDE4_INCLUDE_DIR}
 
15
                    ${QT_INCLUDES}
 
16
                   )
 
17
 
 
18
SET(kipiplugin_batchprocessimages_PART_SRCS
 
19
    plugin/plugin_batchprocessimages.cpp
 
20
    common/batchprocessimagesdialog.cpp
 
21
    common/batchprocessimagesitem.cpp
 
22
    common/batchprocessimageslist.cpp
 
23
    common/imagepreview.cpp
 
24
    common/dialogutils.cpp
 
25
    common/pixmapview.cpp
 
26
    tools/borderimagesdialog.cpp
 
27
    tools/borderoptionsdialog.cpp
 
28
    tools/colorimagesdialog.cpp
 
29
    tools/coloroptionsdialog.cpp
 
30
    tools/convertimagesdialog.cpp
 
31
    tools/convertoptionsdialog.cpp
 
32
    tools/effectimagesdialog.cpp
 
33
    tools/effectoptionsdialog.cpp
 
34
    tools/filterimagesdialog.cpp
 
35
    tools/filteroptionsdialog.cpp
 
36
    tools/recompressimagesdialog.cpp
 
37
    tools/recompressoptionsdialog.cpp
 
38
    tools/renameimagesdialog.cpp
 
39
    tools/renameimageswidget.cpp
 
40
    tools/resizecommandbuilder.cpp
 
41
    tools/resizeimagesdialog.cpp
 
42
    tools/resizeoptionsdialog.cpp
 
43
    )
 
44
 
 
45
KDE4_ADD_UI_FILES(kipiplugin_batchprocessimages_PART_SRCS
 
46
                  ui/batchprocessimagesdialog.ui
 
47
                  ui/imagepreview.ui
 
48
                  ui/renameimagesbase.ui
 
49
                 )
 
50
 
 
51
KDE4_ADD_PLUGIN(kipiplugin_batchprocessimages ${kipiplugin_batchprocessimages_PART_SRCS})
 
52
 
 
53
TARGET_LINK_LIBRARIES(
 
54
    kipiplugin_batchprocessimages
 
55
    kipiplugins
 
56
    ${KIPI_LIBRARIES}
 
57
    ${KEXIV2_LIBRARIES}
 
58
    ${KDE4_KDECORE_LIBS}
 
59
    ${KDE4_KIO_LIBS}
 
60
    ${KDE4_KDEUI_LIBS}
 
61
    )
 
62
 
 
63
INSTALL(TARGETS kipiplugin_batchprocessimages DESTINATION ${PLUGIN_INSTALL_DIR})
 
64
 
 
65
INSTALL(FILES plugin/kipiplugin_batchprocessimages.desktop DESTINATION ${SERVICES_INSTALL_DIR})