~ubuntu-branches/ubuntu/oneiric/kdegraphics-thumbnailers/oneiric-proposed

« back to all changes in this revision

Viewing changes to raw/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2011-07-12 22:10:08 UTC
  • Revision ID: james.westby@ubuntu.com-20110712221008-kpmuue6cczla3zit
Tags: upstream-4.6.90+repack
ImportĀ upstreamĀ versionĀ 4.6.90+repack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(rawthumbnail)
 
2
 
 
3
## includes and linking
 
4
include_directories(${KEXIV2_INCLUDE_DIR} ${KDCRAW_INCLUDE_DIR})
 
5
 
 
6
 
 
7
#sources
 
8
set(rawthumbnail_SRCS rawcreator.cpp)
 
9
kde4_add_plugin(rawthumbnail ${rawthumbnail_SRCS})
 
10
 
 
11
 
 
12
## includes and linking
 
13
target_link_libraries(rawthumbnail ${KDE4_KIO_LIBS} ${KDCRAW_LIBRARIES} ${KEXIV2_LIBRARIES} ${QT_QTGUI_LIBRARY} ${KDE4_KDECORE_LIBS})
 
14
 
 
15
## install the plugin
 
16
install(TARGETS rawthumbnail DESTINATION ${PLUGIN_INSTALL_DIR})
 
17
install(FILES rawthumbnail.desktop DESTINATION ${SERVICES_INSTALL_DIR})
 
18
 
 
19