plasma-framework/declarativeimports/graphicswidgets/CMakeLists.txt
Pino Toscano 1cf0db3e2a install the declarative imports plugins in the proper place
(pending an addition to FindKDE4Internal.cmake for a nice variable for this)

svn path=/trunk/KDE/kdebase/runtime/; revision=1186527
2010-10-16 19:28:20 +00:00

22 lines
668 B
CMake

project(graphicswidgetsbindings)
set(graphicswidgetsbindings_SRCS
graphicswidgetsbindingsplugin.cpp
declarativetabbar.cpp
)
INCLUDE_DIRECTORIES(
${CMAKE_SOURCE_DIR}
${CMAKE_BINARY_DIR}
${KDE4_INCLUDES}
)
qt4_automoc(${graphicswidgetsbindings_SRCS})
add_library(graphicswidgetsbindingsplugin SHARED ${graphicswidgetsbindings_SRCS})
target_link_libraries(graphicswidgetsbindingsplugin ${KDE4_PLASMA_LIBS} ${QT_QTSCRIPT_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY})
install(TARGETS graphicswidgetsbindingsplugin DESTINATION imports/org/kde/plasma/graphicswidgets)
install(FILES qmldir DESTINATION imports/org/kde/plasma/graphicswidgets)