2009-12-23 12:27:31 +00:00
|
|
|
# strange conversion error in pushbutton.cpp
|
|
|
|
kde4_no_enable_final(plasma)
|
|
|
|
|
2010-04-29 05:57:34 +00:00
|
|
|
if(KDE_PLATFORM_FEATURE_BINARY_COMPATIBLE_FEATURE_REDUCTION)
|
|
|
|
set(PLASMA_NO_KDEWEBKIT TRUE)
|
|
|
|
set(PLASMA_NO_KNEWSTUFF TRUE)
|
|
|
|
set(PLASMA_NO_SOLID TRUE)
|
|
|
|
endif(KDE_PLATFORM_FEATURE_BINARY_COMPATIBLE_FEATURE_REDUCTION)
|
2009-12-23 12:27:31 +00:00
|
|
|
|
2008-11-04 02:20:46 +00:00
|
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}
|
2009-09-02 16:02:14 +00:00
|
|
|
${KDE4_KDECORE_INCLUDES}
|
|
|
|
${KDE4_KDEUI_INCLUDES}
|
2010-04-29 17:11:21 +00:00
|
|
|
${KDE4_KIO_INCLUDES}
|
2008-11-04 02:55:37 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/threadweaver/
|
2009-09-03 21:53:56 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/plasma/extenders
|
2009-09-03 21:10:33 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/plasma/remote
|
2009-09-03 21:21:27 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/plasma/runners
|
2009-09-02 02:27:16 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/plasma/private/qtjolie-branch/qtjolie
|
|
|
|
${CMAKE_SOURCE_DIR}/plasma/private/qtjolie-branch
|
|
|
|
${CMAKE_SOURCE_DIR}/plasma/private/qtjolie-branch/includes
|
|
|
|
${KDE4_INCLUDES}
|
|
|
|
)
|
|
|
|
|
2010-04-29 17:23:01 +00:00
|
|
|
if(NOT PLASMA_NO_KIO)
|
|
|
|
include_directories(${KDE4_KIO_INCLUDES})
|
|
|
|
set(PLASMA_EXTRA_LIBS ${PLASMA_EXTRA_LIBS} ${KDE4_KIO_LIBS})
|
|
|
|
endif(NOT PLASMA_NO_KIO)
|
|
|
|
|
2010-04-29 05:57:34 +00:00
|
|
|
if(NOT PLASMA_NO_KDEWEBKIT)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/kdewebkit/)
|
|
|
|
set(PLASMA_EXTRA_LIBS ${PLASMA_EXTRA_LIBS} kdewebkit)
|
|
|
|
endif(NOT PLASMA_NO_KDEWEBKIT)
|
|
|
|
|
|
|
|
if(NOT PLASMA_NO_KNEWSTUFF)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/knewstuff/)
|
|
|
|
set(PLASMA_EXTRA_LIBS ${PLASMA_EXTRA_LIBS} knewstuff3)
|
|
|
|
endif(NOT PLASMA_NO_KNEWSTUFF)
|
|
|
|
|
|
|
|
if(NOT PLASMA_NO_SOLID)
|
|
|
|
include_directories(${CMAKE_BINARY_DIR}/solid/)
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR}/solid/)
|
|
|
|
set(PLASMA_EXTRA_LIBS ${PLASMA_EXTRA_LIBS} ${KDE4_SOLID_LIBS})
|
|
|
|
endif(NOT PLASMA_NO_SOLID)
|
|
|
|
|
2009-09-09 13:40:16 +00:00
|
|
|
if(QCA2_FOUND)
|
|
|
|
include_directories(${QCA2_INCLUDE_DIR})
|
|
|
|
set(ENABLE_REMOTE_WIDGETS TRUE)
|
|
|
|
endif(QCA2_FOUND)
|
2009-09-10 07:26:04 +00:00
|
|
|
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config-plasma.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-plasma.h)
|
2009-09-02 02:27:16 +00:00
|
|
|
|
2008-11-03 23:08:39 +00:00
|
|
|
if(QT_QTOPENGL_FOUND AND OPENGL_FOUND)
|
2008-11-04 13:37:04 +00:00
|
|
|
# libGL needs dlopen() and friends from the dl library
|
|
|
|
find_library(DL_LIBRARY dl)
|
2009-03-19 00:44:10 +00:00
|
|
|
mark_as_advanced(DL_LIBRARY)
|
2008-11-03 23:08:39 +00:00
|
|
|
include_directories(${OPENGL_INCLUDE_DIR})
|
|
|
|
endif(QT_QTOPENGL_FOUND AND OPENGL_FOUND)
|
|
|
|
|
|
|
|
add_subdirectory(tests)
|
|
|
|
add_definitions(-DKDE_DEFAULT_DEBUG_AREA=1209)
|
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
|
|
|
set(plasmagik_SRCS
|
|
|
|
packagemetadata.cpp
|
|
|
|
packagestructure.cpp
|
|
|
|
package.cpp
|
|
|
|
)
|
|
|
|
|
|
|
|
set(plasma_LIB_SRCS
|
|
|
|
${plasmagik_SRCS}
|
2009-09-04 08:58:34 +00:00
|
|
|
abstractrunner.cpp
|
2009-10-22 22:20:39 +00:00
|
|
|
abstracttoolbox.cpp
|
2009-10-21 01:50:37 +00:00
|
|
|
animator.cpp
|
2009-10-15 19:36:38 +00:00
|
|
|
animations/animation.cpp
|
2010-04-26 20:56:28 +00:00
|
|
|
animations/animationscriptengine.cpp
|
2010-04-29 22:29:26 +00:00
|
|
|
animations/bindings/animationgroup.cpp
|
2010-04-30 00:13:44 +00:00
|
|
|
animations/bindings/easingcurve.cpp
|
2010-04-29 22:29:26 +00:00
|
|
|
animations/easinganimation.cpp
|
2009-10-15 19:36:38 +00:00
|
|
|
animations/fade.cpp
|
|
|
|
animations/grow.cpp
|
2010-04-26 20:56:28 +00:00
|
|
|
animations/javascriptanimation.cpp
|
2010-04-29 22:29:26 +00:00
|
|
|
animations/pendulumcurve.cpp
|
2010-01-21 11:51:25 +00:00
|
|
|
animations/pixmaptransition.cpp
|
2009-10-15 19:36:38 +00:00
|
|
|
animations/pulser.cpp
|
2009-10-15 19:53:49 +00:00
|
|
|
animations/rotation.cpp
|
2009-10-22 20:17:07 +00:00
|
|
|
animations/rotationstacked.cpp
|
2010-04-29 22:29:26 +00:00
|
|
|
animations/slide.cpp
|
2009-10-22 20:17:07 +00:00
|
|
|
animations/stackedlayout.cpp
|
2009-12-08 09:22:51 +00:00
|
|
|
animations/geometry.cpp
|
2010-04-19 15:09:36 +00:00
|
|
|
animations/water.cpp
|
2010-04-29 22:29:26 +00:00
|
|
|
animations/widgetsnapshot.cpp
|
|
|
|
animations/zoom.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
applet.cpp
|
|
|
|
configloader.cpp
|
|
|
|
containment.cpp
|
2009-08-17 22:31:32 +00:00
|
|
|
containmentactions.cpp
|
2009-10-05 20:50:57 +00:00
|
|
|
containmentactionspluginsconfig.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
context.cpp
|
|
|
|
corona.cpp
|
|
|
|
datacontainer.cpp
|
|
|
|
dataengine.cpp
|
|
|
|
dataenginemanager.cpp
|
|
|
|
delegate.cpp
|
2009-10-21 01:50:37 +00:00
|
|
|
deprecated/animationdriver.cpp
|
2009-10-15 19:36:38 +00:00
|
|
|
deprecated/animator.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
dialog.cpp
|
2010-04-03 19:10:32 +00:00
|
|
|
abstractdialogmanager.cpp
|
2009-09-03 21:53:56 +00:00
|
|
|
extenders/extender.cpp
|
|
|
|
extenders/extendergroup.cpp
|
|
|
|
extenders/extenderitem.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
paintutils.cpp
|
|
|
|
framesvg.cpp
|
|
|
|
plasma.cpp
|
|
|
|
popupapplet.cpp
|
2010-02-17 23:59:14 +00:00
|
|
|
private/animablegraphicswebview.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
private/applethandle.cpp
|
2009-09-16 17:08:45 +00:00
|
|
|
private/associatedapplicationmanager.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
private/datacontainer_p.cpp
|
2009-09-02 02:27:16 +00:00
|
|
|
private/dataengineconsumer.cpp
|
|
|
|
private/dataengineservice.cpp
|
2009-09-03 21:10:33 +00:00
|
|
|
private/denyallauthorization.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
private/desktoptoolbox.cpp
|
|
|
|
private/extenderapplet.cpp
|
2009-02-09 18:10:45 +00:00
|
|
|
private/extenderitemmimedata.cpp
|
2009-10-19 21:13:54 +00:00
|
|
|
private/focusindicator.cpp
|
2009-09-02 02:27:16 +00:00
|
|
|
private/getsource.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
private/nativetabbar.cpp
|
|
|
|
private/packages.cpp
|
|
|
|
private/paneltoolbox.cpp
|
2009-09-02 02:27:16 +00:00
|
|
|
private/pinpairingauthorization.cpp
|
|
|
|
private/pinpairingdialog.cpp
|
|
|
|
private/plasmoidservice.cpp
|
|
|
|
private/remotedataengine.cpp
|
2009-09-02 02:21:41 +00:00
|
|
|
private/remoteservice.cpp
|
|
|
|
private/remoteservicejob.cpp
|
2009-02-11 11:16:09 +00:00
|
|
|
private/runnerjobs.cpp
|
2009-09-02 02:21:41 +00:00
|
|
|
private/serviceprovider.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
private/style.cpp
|
2009-09-02 02:27:16 +00:00
|
|
|
private/trustedonlyauthorization.cpp
|
2009-10-20 14:14:53 +00:00
|
|
|
private/internaltoolbox.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
private/tooltip.cpp
|
2009-04-02 06:31:37 +00:00
|
|
|
private/wallpaperrenderthread.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
private/windowpreview.cpp
|
2009-09-17 16:24:19 +00:00
|
|
|
private/kineticscroll.cpp
|
2009-11-26 21:57:36 +00:00
|
|
|
private/effects/halopainter.cpp
|
2010-04-19 15:03:02 +00:00
|
|
|
private/effects/ripple.cpp
|
2009-09-04 08:58:34 +00:00
|
|
|
querymatch.cpp
|
2009-09-03 21:10:33 +00:00
|
|
|
remote/accessmanager.cpp
|
|
|
|
remote/accessappletjob.cpp
|
|
|
|
remote/authorizationinterface.cpp
|
|
|
|
remote/authorizationmanager.cpp
|
|
|
|
remote/authorizationrule.cpp
|
|
|
|
remote/clientpinrequest.cpp
|
|
|
|
remote/credentials.cpp
|
|
|
|
remote/serviceaccessjob.cpp
|
2009-09-04 08:58:34 +00:00
|
|
|
runnercontext.cpp
|
|
|
|
runnermanager.cpp
|
|
|
|
runnersyntax.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
scripting/appletscript.cpp
|
|
|
|
scripting/dataenginescript.cpp
|
|
|
|
scripting/runnerscript.cpp
|
2009-10-29 05:54:11 +00:00
|
|
|
scripting/wallpaperscript.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
scripting/scriptengine.cpp
|
|
|
|
service.cpp
|
|
|
|
servicejob.cpp
|
|
|
|
svg.cpp
|
|
|
|
theme.cpp
|
|
|
|
tooltipcontent.cpp
|
|
|
|
tooltipmanager.cpp
|
|
|
|
version.cpp
|
|
|
|
view.cpp
|
|
|
|
wallpaper.cpp
|
2009-07-26 18:58:27 +00:00
|
|
|
windoweffects.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/checkbox.cpp
|
|
|
|
widgets/combobox.cpp
|
|
|
|
widgets/flashinglabel.cpp
|
|
|
|
widgets/frame.cpp
|
|
|
|
widgets/groupbox.cpp
|
|
|
|
widgets/iconwidget.cpp
|
2009-08-30 21:17:52 +00:00
|
|
|
widgets/itembackground.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/label.cpp
|
|
|
|
widgets/lineedit.cpp
|
|
|
|
widgets/meter.cpp
|
|
|
|
widgets/pushbutton.cpp
|
|
|
|
widgets/radiobutton.cpp
|
|
|
|
widgets/scrollbar.cpp
|
|
|
|
widgets/signalplotter.cpp
|
|
|
|
widgets/slider.cpp
|
2009-01-07 18:54:43 +00:00
|
|
|
widgets/spinbox.cpp
|
2008-11-11 09:30:05 +00:00
|
|
|
widgets/toolbutton.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/busywidget.cpp
|
2009-03-03 17:31:54 +00:00
|
|
|
widgets/scrollwidget.cpp
|
2009-08-30 11:28:34 +00:00
|
|
|
widgets/separator.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/svgwidget.cpp
|
|
|
|
widgets/tabbar.cpp
|
2009-03-03 17:38:16 +00:00
|
|
|
widgets/textbrowser.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/treeview.cpp
|
|
|
|
widgets/textedit.cpp
|
|
|
|
widgets/webview.cpp
|
2009-09-02 02:27:16 +00:00
|
|
|
|
|
|
|
#Temporary QtJolie branch
|
|
|
|
private/qtjolie-branch/qtjolie/abstractadaptor.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/client.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/clientthread.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/value.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/fault.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/message.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/metaservice.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/pendingcall.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/pendingcallwatcher.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/pendingreply.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/server.cpp
|
|
|
|
private/qtjolie-branch/qtjolie/serverthread.cpp
|
2008-11-03 23:08:39 +00:00
|
|
|
)
|
|
|
|
|
2009-10-07 18:44:33 +00:00
|
|
|
kde4_add_kcfg_files(plasma_LIB_SRCS data/kconfigxt/libplasma-theme-global.kcfgc)
|
|
|
|
|
2009-09-02 02:27:16 +00:00
|
|
|
kde4_add_ui_files(plasma_LIB_SRCS
|
|
|
|
private/pinpairing.ui
|
|
|
|
private/publish.ui)
|
2008-11-03 23:08:39 +00:00
|
|
|
#NEPOMUK_GENERATE_FROM_ONTOLOGY(
|
|
|
|
# nwc.nrl
|
|
|
|
# ${metadata_test_BINARY_DIR}
|
|
|
|
# TEST_HEADERS
|
|
|
|
# TEST_SOURCES
|
|
|
|
# TEST_INCLUDES
|
|
|
|
#)
|
|
|
|
|
|
|
|
if(QT_QTOPENGL_FOUND AND OPENGL_FOUND)
|
2008-11-12 22:56:18 +00:00
|
|
|
message(STATUS "Adding support for OpenGL applets to libplasma")
|
|
|
|
set(plasma_LIB_SRCS
|
|
|
|
${plasma_LIB_SRCS}
|
|
|
|
glapplet.cpp)
|
2008-11-03 23:08:39 +00:00
|
|
|
endif(QT_QTOPENGL_FOUND AND OPENGL_FOUND)
|
|
|
|
|
2009-02-08 21:41:08 +00:00
|
|
|
if (PHONON_FOUND)
|
2009-02-20 08:41:56 +00:00
|
|
|
message(STATUS "Adding support for Phonon to libplasma")
|
2009-02-08 21:41:08 +00:00
|
|
|
set(plasma_LIB_SRCS
|
|
|
|
${plasma_LIB_SRCS}
|
|
|
|
widgets/videowidget.cpp)
|
|
|
|
endif(PHONON_FOUND)
|
|
|
|
|
2008-11-03 23:08:39 +00:00
|
|
|
kde4_add_library(plasma SHARED ${plasma_LIB_SRCS})
|
|
|
|
|
2010-04-29 17:23:01 +00:00
|
|
|
target_link_libraries(plasma ${QT_QTUITOOLS_LIBRARY} ${QT_QTWEBKIT_LIBRARY}
|
2010-04-29 05:57:34 +00:00
|
|
|
${QT_QTSCRIPT_LIBRARY} kdnssd threadweaver ${PLASMA_EXTRA_LIBS})
|
2009-09-09 18:47:11 +00:00
|
|
|
|
|
|
|
if(QCA2_FOUND)
|
|
|
|
target_link_libraries(plasma ${QCA2_LIBRARIES})
|
|
|
|
endif(QCA2_FOUND)
|
|
|
|
|
2008-11-04 08:13:55 +00:00
|
|
|
if(X11_FOUND)
|
|
|
|
target_link_libraries(plasma ${X11_LIBRARIES})
|
|
|
|
endif(X11_FOUND)
|
|
|
|
|
2009-02-08 21:41:08 +00:00
|
|
|
if(PHONON_FOUND)
|
|
|
|
target_link_libraries(plasma ${KDE4_PHONON_LIBS})
|
|
|
|
endif(PHONON_FOUND)
|
2008-11-04 08:13:55 +00:00
|
|
|
|
2008-11-03 23:08:39 +00:00
|
|
|
if(DL_LIBRARY)
|
2008-11-12 22:56:18 +00:00
|
|
|
target_link_libraries(plasma ${DL_LIBRARY})
|
2008-11-03 23:08:39 +00:00
|
|
|
endif(DL_LIBRARY)
|
|
|
|
|
|
|
|
if(QT_QTOPENGL_FOUND AND OPENGL_FOUND)
|
|
|
|
target_link_libraries(plasma ${QT_QTOPENGL_LIBRARY} ${OPENGL_gl_LIBRARY})
|
|
|
|
endif(QT_QTOPENGL_FOUND AND OPENGL_FOUND)
|
|
|
|
|
2008-11-10 23:52:13 +00:00
|
|
|
target_link_libraries(plasma LINK_INTERFACE_LIBRARIES kdeui kdecore ${QT_QTGUI_LIBRARY})
|
|
|
|
|
2008-11-03 23:29:54 +00:00
|
|
|
#do NOT use GENERIC versioning -- the plasma team will take care of versioning
|
2008-11-03 23:08:39 +00:00
|
|
|
set_target_properties(plasma PROPERTIES
|
|
|
|
VERSION 3.0.0
|
|
|
|
SOVERSION 3
|
|
|
|
)
|
|
|
|
|
2008-11-10 23:52:13 +00:00
|
|
|
install(TARGETS plasma EXPORT kdelibsLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS})
|
2008-11-03 23:08:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
########### install files ###############
|
|
|
|
|
|
|
|
set(plasmagik_HEADERS
|
|
|
|
packagemetadata.h
|
|
|
|
packagestructure.h
|
|
|
|
package.h
|
|
|
|
)
|
|
|
|
|
|
|
|
install(FILES ${plasmagik_HEADERS} DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/ COMPONENT Devel)
|
|
|
|
|
|
|
|
set(plasma_LIB_INCLUDES
|
2010-04-03 19:10:32 +00:00
|
|
|
abstractdialogmanager.h
|
2009-09-04 08:58:34 +00:00
|
|
|
abstractrunner.h
|
2009-10-22 22:20:39 +00:00
|
|
|
abstracttoolbox.h
|
2008-11-03 23:08:39 +00:00
|
|
|
animationdriver.h
|
2009-10-15 19:36:38 +00:00
|
|
|
animations/animation.h
|
2008-11-03 23:08:39 +00:00
|
|
|
animator.h
|
|
|
|
applet.h
|
|
|
|
configloader.h
|
|
|
|
containment.h
|
2009-08-17 22:31:32 +00:00
|
|
|
containmentactions.h
|
2009-10-05 20:50:57 +00:00
|
|
|
containmentactionspluginsconfig.h
|
2008-11-03 23:08:39 +00:00
|
|
|
context.h
|
|
|
|
corona.h
|
|
|
|
datacontainer.h
|
|
|
|
dataengine.h
|
|
|
|
dataenginemanager.h
|
|
|
|
delegate.h
|
|
|
|
dialog.h
|
2009-09-03 21:53:56 +00:00
|
|
|
extenders/extender.h
|
|
|
|
extenders/extendergroup.h
|
|
|
|
extenders/extenderitem.h
|
2008-11-03 23:08:39 +00:00
|
|
|
paintutils.h
|
2009-07-26 18:58:27 +00:00
|
|
|
windoweffects.h
|
2008-11-03 23:08:39 +00:00
|
|
|
framesvg.h
|
|
|
|
plasma.h
|
|
|
|
plasma_export.h
|
|
|
|
popupapplet.h
|
2009-09-04 08:58:34 +00:00
|
|
|
querymatch.h
|
2009-09-03 21:10:33 +00:00
|
|
|
remote/accessappletjob.h
|
|
|
|
remote/accessmanager.h
|
|
|
|
remote/authorizationmanager.h
|
|
|
|
remote/authorizationrule.h
|
|
|
|
remote/authorizationinterface.h
|
|
|
|
remote/clientpinrequest.h
|
|
|
|
remote/credentials.h
|
|
|
|
remote/serviceaccessjob.h
|
2009-09-04 08:58:34 +00:00
|
|
|
runnercontext.h
|
|
|
|
runnermanager.h
|
|
|
|
runnersyntax.h
|
2008-11-03 23:08:39 +00:00
|
|
|
service.h
|
|
|
|
servicejob.h
|
|
|
|
svg.h
|
|
|
|
theme.h
|
|
|
|
tooltipcontent.h
|
|
|
|
tooltipmanager.h
|
|
|
|
version.h
|
|
|
|
view.h
|
|
|
|
wallpaper.h)
|
|
|
|
|
|
|
|
if(QT_QTOPENGL_FOUND AND OPENGL_FOUND)
|
2008-11-12 22:56:18 +00:00
|
|
|
set(plasma_LIB_INCLUDES
|
|
|
|
${plasma_LIB_INCLUDES}
|
|
|
|
glapplet.h)
|
2008-11-03 23:08:39 +00:00
|
|
|
endif(QT_QTOPENGL_FOUND AND OPENGL_FOUND)
|
|
|
|
|
|
|
|
install(FILES
|
|
|
|
${plasma_LIB_INCLUDES}
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/plasma COMPONENT Devel)
|
|
|
|
|
|
|
|
install(FILES
|
|
|
|
widgets/checkbox.h
|
|
|
|
widgets/combobox.h
|
|
|
|
widgets/flashinglabel.h
|
|
|
|
widgets/frame.h
|
|
|
|
widgets/groupbox.h
|
|
|
|
widgets/iconwidget.h
|
2009-08-30 22:05:07 +00:00
|
|
|
widgets/itembackground.h
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/label.h
|
|
|
|
widgets/lineedit.h
|
|
|
|
widgets/meter.h
|
|
|
|
widgets/pushbutton.h
|
2008-11-11 09:30:05 +00:00
|
|
|
widgets/toolbutton.h
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/radiobutton.h
|
|
|
|
widgets/scrollbar.h
|
|
|
|
widgets/signalplotter.h
|
|
|
|
widgets/slider.h
|
2009-01-07 18:54:43 +00:00
|
|
|
widgets/spinbox.h
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/busywidget.h
|
2009-08-30 11:28:34 +00:00
|
|
|
widgets/separator.h
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/svgwidget.h
|
2009-03-03 17:31:54 +00:00
|
|
|
widgets/scrollwidget.h
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/tabbar.h
|
2009-03-03 17:38:16 +00:00
|
|
|
widgets/textbrowser.h
|
2008-11-03 23:08:39 +00:00
|
|
|
widgets/treeview.h
|
|
|
|
widgets/textedit.h
|
|
|
|
widgets/webview.h
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/widgets COMPONENT Devel)
|
|
|
|
|
|
|
|
install(FILES
|
|
|
|
scripting/appletscript.h
|
|
|
|
scripting/dataenginescript.h
|
|
|
|
scripting/runnerscript.h
|
2009-10-29 05:54:11 +00:00
|
|
|
scripting/wallpaperscript.h
|
2008-11-03 23:08:39 +00:00
|
|
|
scripting/scriptengine.h
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/scripting COMPONENT Devel)
|
|
|
|
|
2009-02-08 21:54:31 +00:00
|
|
|
if(PHONON_FOUND)
|
|
|
|
install (FILES
|
|
|
|
widgets/videowidget.h
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/widgets COMPONENT Devel)
|
|
|
|
endif(PHONON_FOUND)
|
2008-11-03 23:08:39 +00:00
|
|
|
|
2009-10-15 19:36:38 +00:00
|
|
|
install(FILES
|
|
|
|
animations/animation.h
|
|
|
|
DESTINATION ${INCLUDE_INSTALL_DIR}/plasma/animations COMPONENT Devel)
|
|
|
|
|
|
|
|
|
2008-11-03 23:08:39 +00:00
|
|
|
install(FILES
|
2009-09-03 20:40:22 +00:00
|
|
|
data/servicetypes/plasma-animator.desktop
|
|
|
|
data/servicetypes/plasma-applet.desktop
|
|
|
|
data/servicetypes/plasma-applet-popupapplet.desktop
|
|
|
|
data/servicetypes/plasma-containment.desktop
|
|
|
|
data/servicetypes/plasma-containmentactions.desktop
|
|
|
|
data/servicetypes/plasma-dataengine.desktop
|
|
|
|
data/servicetypes/plasma-packagestructure.desktop
|
|
|
|
data/servicetypes/plasma-runner.desktop
|
|
|
|
data/servicetypes/plasma-scriptengine.desktop
|
|
|
|
data/servicetypes/plasma-wallpaper.desktop
|
2008-11-03 23:08:39 +00:00
|
|
|
DESTINATION ${SERVICETYPES_INSTALL_DIR})
|
|
|
|
|
|
|
|
install(FILES
|
2009-09-03 20:40:22 +00:00
|
|
|
data/servicetypes/plasma-applet-extenderapplet.desktop
|
2008-11-03 23:08:39 +00:00
|
|
|
DESTINATION ${SERVICES_INSTALL_DIR})
|
|
|
|
|
2009-09-03 20:40:22 +00:00
|
|
|
install(FILES data/knewstuff/plasmoids.knsrc DESTINATION ${CONFIG_INSTALL_DIR})
|
2008-11-03 23:08:39 +00:00
|
|
|
|
2009-09-03 20:40:22 +00:00
|
|
|
install(FILES data/kconfig_updates/plasma_popupapplet_fix_groups.upd DESTINATION ${KCONF_UPDATE_INSTALL_DIR})
|
|
|
|
install(PROGRAMS data/kconfig_updates/plasma_popupapplet_fix_groups.pl DESTINATION ${KCONF_UPDATE_INSTALL_DIR})
|
|
|
|
install(FILES data/operations/dataengineservice.operations DESTINATION ${DATA_INSTALL_DIR}/plasma/services)
|
|
|
|
install(FILES data/operations/plasmoidservice.operations DESTINATION ${DATA_INSTALL_DIR}/plasma/services)
|
2009-09-02 09:45:52 +00:00
|
|
|
|
|
|
|
########### next target ###############
|
|
|
|
|
2009-09-07 10:28:45 +00:00
|
|
|
kde4_add_executable(kcmremotewidgetshelper private/remotewidgetshelper.cpp)
|
|
|
|
target_link_libraries(kcmremotewidgetshelper kdecore)
|
|
|
|
install(TARGETS kcmremotewidgetshelper DESTINATION ${LIBEXEC_INSTALL_DIR})
|
2009-09-02 09:45:52 +00:00
|
|
|
|
2009-09-07 10:28:45 +00:00
|
|
|
kde4_install_auth_helper_files(kcmremotewidgetshelper org.kde.kcontrol.kcmremotewidgets root)
|
2009-09-02 18:31:40 +00:00
|
|
|
|
2009-09-07 10:28:45 +00:00
|
|
|
kde4_install_auth_actions(org.kde.kcontrol.kcmremotewidgets kcm_remotewidgets.actions)
|
2009-09-02 09:45:52 +00:00
|
|
|
|