2012-03-15 19:57:43 +01:00
|
|
|
project(plasmaextracomponents)
|
|
|
|
|
2012-03-15 22:04:34 +01:00
|
|
|
find_package(KActivities REQUIRED)
|
|
|
|
|
|
|
|
#include(KDE4Defaults)
|
|
|
|
|
2012-03-15 19:57:43 +01:00
|
|
|
set(plasmaextracomponents_SRCS
|
2012-03-15 21:54:38 +01:00
|
|
|
appbackgroundprovider.cpp
|
2012-03-15 22:04:34 +01:00
|
|
|
resourceinstance.cpp
|
2012-03-15 19:57:43 +01:00
|
|
|
plasmaextracomponentsplugin.cpp
|
|
|
|
)
|
|
|
|
|
2012-03-20 12:08:48 +01:00
|
|
|
include_directories(
|
|
|
|
${KACTIVITIES_INCLUDE_DIRS}
|
2012-03-15 19:57:43 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
qt4_automoc(${plasmaextracomponents_SRCS})
|
|
|
|
|
|
|
|
|
|
|
|
add_library(plasmaextracomponentsplugin SHARED ${plasmaextracomponents_SRCS})
|
2012-03-15 22:04:34 +01:00
|
|
|
target_link_libraries(plasmaextracomponentsplugin ${QT_QTCORE_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY} ${QT_QTGUI_LIBRARY} ${KDE4_PLASMA_LIBS} ${KACTIVITIES_LIBRARY} )
|
|
|
|
|
|
|
|
#target_link_libraries(plasmaextracomponentsplugin ${QT_QTCORE_LIBRARY} ${QT_QTDBUS_LIBRARY} ${QT_QTGUI_LIBRARY} ${QT_QTSCRIPT_LIBRARY} ${QT_QTDECLARATIVE_LIBRARY} ${KDE4_KDECORE_LIBRARY} ${KDE4_PLASMA_LIBS} ${KACTIVITIES_LIBRARY})
|
|
|
|
|
2012-03-15 19:57:43 +01:00
|
|
|
|
|
|
|
install(TARGETS plasmaextracomponentsplugin DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/extras)
|
|
|
|
|
|
|
|
install(DIRECTORY qml/ DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/extras)
|
|
|
|
|
|
|
|
|
|
|
|
# The platform specific stuff, overwrites a copy of the desktop one
|
|
|
|
# it does install some files on top of the old ones, has to be done
|
|
|
|
# file by file since if some component from the generic set is more
|
|
|
|
# recent than the specifc ones, it wouldn't be overwritten
|
|
|
|
|
|
|
|
install(TARGETS plasmaextracomponentsplugin DESTINATION ${PLUGIN_INSTALL_DIR}/platformimports/touch/org/kde/plasma/extras)
|
|
|
|
|
2012-03-16 03:38:04 +01:00
|
|
|
install(FILES qml/App.qml DESTINATION ${PLUGIN_INSTALL_DIR}/platformimports/touch/org/kde/plasma/extras)
|
2012-03-19 23:03:16 +01:00
|
|
|
install(FILES qml/Heading.qml DESTINATION ${PLUGIN_INSTALL_DIR}/platformimports/touch/org/kde/plasma/extras)
|
2012-03-19 23:38:57 +01:00
|
|
|
install(FILES qml/Paragraph.qml DESTINATION ${PLUGIN_INSTALL_DIR}/platformimports/touch/org/kde/plasma/extras)
|
2012-03-15 19:57:43 +01:00
|
|
|
install(FILES qml/Title.qml DESTINATION ${PLUGIN_INSTALL_DIR}/platformimports/touch/org/kde/plasma/extras)
|
|
|
|
|
2012-03-30 00:33:29 +02:00
|
|
|
install(DIRECTORY qml/animations/ DESTINATION ${IMPORTS_INSTALL_DIR}/org/kde/plasma/extras)
|
|
|
|
|
2012-03-19 23:03:16 +01:00
|
|
|
#install platform overrides -- enable as we use this feature for plasmaextras
|
|
|
|
#install(DIRECTORY platformcomponents/touch/ DESTINATION ${PLUGIN_INSTALL_DIR}/platformimports/touch/org/kde/plasma/extras)
|