plasma-framework/declarativeimports/krunnermodel/CMakeLists.txt
Shaun Reich 04d6b450d3 move krunnermodel into plasma/declarativeimports where it belongs
(slight mistake on the git-filter-branch import from plasma-mobile.
So it'll live here now, so that other gizmos can use it.
2012-05-03 10:00:04 -04:00

21 lines
529 B
CMake

project(runnermodel)
set(runnermodel_SRCS
runnermodel.cpp
runnermodelplugin.cpp
)
qt4_automoc(${runnermodel_SRCS})
kde4_add_library(runnermodelplugin SHARED ${runnermodel_SRCS})
target_link_libraries(runnermodelplugin
${QT_QTCORE_LIBRARY}
${QT_QTDECLARATIVE_LIBRARY}
${KDE4_PLASMA_LIBS}
)
install(TARGETS runnermodelplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/runnermodel)
install(FILES qmldir DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/runnermodel)
#add_subdirectory(test)