~ubuntu-branches/ubuntu/natty/kdebase-runtime/natty-proposed

« back to all changes in this revision

Viewing changes to plasma/declarativeimports/core/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2010-11-24 11:07:10 UTC
  • mto: (0.8.7 upstream)
  • mto: This revision was merged to the branch mainline in revision 129.
  • Revision ID: james.westby@ubuntu.com-20101124110710-6dbsyw0yh21qvn82
Tags: upstream-4.5.80
ImportĀ upstreamĀ versionĀ 4.5.80

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
project(corebindings)
 
2
 
 
3
set(corebindings_SRCS
 
4
    corebindingsplugin.cpp
 
5
    dataengineconsumer.cpp
 
6
    theme.cpp
 
7
    datamodel.cpp
 
8
    datasource.cpp
 
9
    svgitem.cpp
 
10
    framesvgitem.cpp
 
11
    )
 
12
 
 
13
INCLUDE_DIRECTORIES(
 
14
        ${CMAKE_SOURCE_DIR}
 
15
        ${CMAKE_BINARY_DIR}
 
16
        ${KDE4_INCLUDES}
 
17
)
 
18
 
 
19
qt4_automoc(${corebindings_SRCS})
 
20
 
 
21
 
 
22
add_library(corebindingsplugin SHARED ${corebindings_SRCS})
 
23
target_link_libraries(corebindingsplugin ${KDE4_PLASMA_LIBS} ${QT_QTSCRIPT_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY})
 
24
 
 
25
install(TARGETS corebindingsplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/core)
 
26
install(FILES qmldir DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/core)