95e5431610
the old plugin is still there for compatibility, however is discouraged to be used
20 lines
513 B
CMake
20 lines
513 B
CMake
project(runnermodel)
|
|
|
|
set(runnermodel_SRCS
|
|
../core/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)
|
|
|