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

« back to all changes in this revision

Viewing changes to imageplugins/perspective/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Christian Mangold
  • Date: 2010-04-09 21:30:01 UTC
  • mfrom: (1.2.28 upstream)
  • Revision ID: james.westby@ubuntu.com-20100409213001-4bfyibrd359rn7o3
Tags: 2:1.2.0-0ubuntu1
* New upstream release (LP: #560576)
* Remove all patches, fixed upstream
  - Remove quilt build-depend

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
SET(digikamimageplugin_perspective_PART_SRCS imageplugin_perspective.cpp
3
 
                                             perspectivetool.cpp
4
 
                                             perspectivewidget.cpp 
5
 
                                             triangle.cpp 
6
 
                                             matrix.cpp 
7
 
   )
8
 
 
9
 
KDE4_ADD_PLUGIN(digikamimageplugin_perspective ${digikamimageplugin_perspective_PART_SRCS})
10
 
 
11
 
TARGET_LINK_LIBRARIES(
12
 
    digikamimageplugin_perspective
13
 
    digikamcore
14
 
    ${KDE4_KDECORE_LIBS}
15
 
    ${KDE4_KDEUI_LIBS}
16
 
    ${KDE4_KIO_LIBS}
17
 
    ${QT_QTCORE_LIBRARY}
18
 
    ${QT_QTGUI_LIBRARY}
19
 
    )
20
 
 
21
 
INSTALL(TARGETS digikamimageplugin_perspective DESTINATION ${PLUGIN_INSTALL_DIR})
22
 
INSTALL(FILES digikamimageplugin_perspective_ui.rc DESTINATION ${DATA_INSTALL_DIR}/digikam)
23
 
INSTALL(FILES digikamimageplugin_perspective.desktop DESTINATION ${SERVICES_INSTALL_DIR})
24