~ubuntu-branches/ubuntu/raring/plasma-mobile/raring-proposed

« back to all changes in this revision

Viewing changes to components/dirmodel/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2012-07-17 12:04:43 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120717120443-q3ig9u2fnltx67yg
Tags: 2.0+git2012071701-0ubuntu1
* New upstream snapshot
* Remove build-dep on kde-runtime-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(dirmodel)
 
2
 
 
3
set(dirmodel_SRCS
 
4
    dirmodel.cpp
 
5
    dirmodelplugin.cpp
 
6
    )
 
7
 
 
8
qt4_automoc(${dirmodel_SRCS})
 
9
 
 
10
kde4_add_library(dirmodelplugin SHARED ${dirmodel_SRCS})
 
11
target_link_libraries(dirmodelplugin
 
12
        ${QT_QTCORE_LIBRARY}
 
13
        ${QT_QTDECLARATIVE_LIBRARY}
 
14
        ${KDE4_KIO_LIBS}
 
15
        )
 
16
 
 
17
install(TARGETS dirmodelplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/dirmodel)
 
18
install(FILES qmldir DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/dirmodel)
 
19
 
 
20
#add_subdirectory(test)