ea6f0ae502
- Make use of the two EffectHandler helper methods: effect config modules now notify KWin that corresponding effect should be reloaded when it's config is changed. svn path=/trunk/KDE/kdebase/workspace/; revision=669436
177 lines
4.8 KiB
CMake
177 lines
4.8 KiB
CMake
# Adds effect plugin with given name. Sources are given after the name
|
|
macro(KWIN4_ADD_EFFECT name)
|
|
kde4_automoc(${ARGN})
|
|
kde4_add_plugin(kwin4_effect_${name} ${ARGN})
|
|
target_link_libraries(kwin4_effect_${name} kwineffects ${KDE4_KDEUI_LIBS})
|
|
install(TARGETS kwin4_effect_${name} DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
endmacro(KWIN4_ADD_EFFECT)
|
|
|
|
macro(KWIN4_ADD_EFFECT_CONFIG name)
|
|
kde4_automoc(${ARGN})
|
|
kde4_add_plugin(kcm_kwin4_effect_${name} ${ARGN})
|
|
target_link_libraries(kcm_kwin4_effect_${name} kwineffects ${KDE4_KDEUI_LIBS})
|
|
install(TARGETS kcm_kwin4_effect_${name} DESTINATION ${PLUGIN_INSTALL_DIR})
|
|
endmacro(KWIN4_ADD_EFFECT_CONFIG)
|
|
|
|
include_directories(
|
|
${CMAKE_SOURCE_DIR}/workspace/kwin/lib
|
|
)
|
|
|
|
install( FILES kwineffect.desktop DESTINATION ${SERVICETYPES_INSTALL_DIR})
|
|
|
|
|
|
|
|
### builtins - most important, ready-to-use effects
|
|
# sources
|
|
SET(kwin4_effect_builtins_sources
|
|
boxswitch.cpp
|
|
desktopgrid.cpp
|
|
dialogparent.cpp
|
|
diminactive.cpp
|
|
fade.cpp
|
|
fallapart.cpp
|
|
flame.cpp
|
|
maketransparent.cpp
|
|
minimizeanimation.cpp
|
|
presentwindows.cpp
|
|
scalein.cpp
|
|
thumbnailaside.cpp
|
|
zoom.cpp
|
|
)
|
|
# their .desktop files
|
|
install( FILES
|
|
boxswitch.desktop
|
|
desktopgrid.desktop
|
|
dialogparent.desktop
|
|
diminactive.desktop
|
|
fade.desktop
|
|
fallapart.desktop
|
|
flame.desktop
|
|
maketransparent.desktop
|
|
minimizeanimation.desktop
|
|
presentwindows.desktop
|
|
scalein.desktop
|
|
thumbnailaside.desktop
|
|
zoom.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
|
|
|
if(OPENGL_FOUND)
|
|
# opengl-based effects
|
|
SET(kwin4_effect_builtins_sources ${kwin4_effect_builtins_sources}
|
|
blur.cpp
|
|
explosioneffect.cpp
|
|
magnifier.cpp
|
|
mousemark.cpp
|
|
shadow.cpp
|
|
trackmouse.cpp
|
|
)
|
|
install( FILES
|
|
blur.desktop
|
|
explosion.desktop
|
|
magnifier.desktop
|
|
mousemark.desktop
|
|
shadow.desktop
|
|
trackmouse.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
|
install( FILES
|
|
data/trackmouse.png
|
|
data/explosion.frag
|
|
data/explosion.vert
|
|
data/explosion-start.png
|
|
data/explosion-end.png
|
|
data/blur.frag
|
|
data/blur.vert
|
|
data/blur-render.frag
|
|
data/blur-render.vert
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin )
|
|
|
|
# config modules
|
|
KWIN4_ADD_EFFECT_CONFIG( builtins presentwindows_config.cpp shadow_config.cpp )
|
|
install( FILES
|
|
presentwindows_config.desktop
|
|
shadow_config.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
|
|
|
|
|
endif(OPENGL_FOUND)
|
|
|
|
# showfps - need both xrender and opengl
|
|
if( OPENGL_FOUND AND X11_Xrender_FOUND )
|
|
SET(kwin4_effect_builtins_sources ${kwin4_effect_builtins_sources}
|
|
showfps.cpp
|
|
)
|
|
install( FILES
|
|
showfps.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
|
endif( OPENGL_FOUND AND X11_Xrender_FOUND )
|
|
|
|
# add the plugin
|
|
KWIN4_ADD_EFFECT(builtins ${kwin4_effect_builtins_sources})
|
|
# link to xrender if necessary
|
|
# note that libkwineffects already links to opengl, so no need to add this here
|
|
if (X11_Xrender_FOUND)
|
|
target_link_libraries(kwin4_effect_builtins ${X11_Xrender_LIB})
|
|
endif (X11_Xrender_FOUND)
|
|
|
|
|
|
|
|
### tests - meant to test/demo certain functionality, not really usable for end-users
|
|
SET(kwin4_effect_tests_sources
|
|
demo_shiftworkspaceup.cpp
|
|
demo_taskbarthumbnail.cpp
|
|
drunken.cpp
|
|
howto.cpp
|
|
shakymove.cpp
|
|
test_input.cpp
|
|
test_thumbnail.cpp
|
|
)
|
|
install( FILES
|
|
demo_shiftworkspaceup.desktop
|
|
demo_taskbarthumbnail.desktop
|
|
drunken.desktop
|
|
howto.desktop
|
|
shakymove.desktop
|
|
test_input.desktop
|
|
test_thumbnail.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
|
|
|
if(OPENGL_FOUND)
|
|
# opengl test/demo stuff
|
|
SET(kwin4_effect_tests_sources ${kwin4_effect_tests_sources}
|
|
demo_liquid.cpp
|
|
demo_showpicture.cpp
|
|
test_fbo.cpp
|
|
wavywindows.cpp
|
|
)
|
|
|
|
install( FILES
|
|
demo_liquid.desktop
|
|
demo_showpicture.desktop
|
|
test_fbo.desktop
|
|
wavywindows.desktop
|
|
DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
|
|
|
install( FILES
|
|
data/liquid.frag
|
|
data/liquid.vert
|
|
DESTINATION ${DATA_INSTALL_DIR}/kwin )
|
|
endif(OPENGL_FOUND)
|
|
|
|
# add the plugin
|
|
KWIN4_ADD_EFFECT(tests ${kwin4_effect_tests_sources})
|
|
|
|
|
|
|
|
### videocapture plugin
|
|
include(UsePkgConfig)
|
|
PKGCONFIG(libcaptury CAPTURY_INCLUDES CAPTURY_LINK_DIR CAPTURY_LDFLAGS CAPTURY_CFLAGS)
|
|
if( CAPTURY_LDFLAGS )
|
|
SET( CAPTURY_FOUND TRUE )
|
|
endif( CAPTURY_LDFLAGS )
|
|
macro_bool_to_01( CAPTURY_FOUND HAVE_CAPTURY )
|
|
if( HAVE_CAPTURY )
|
|
KWIN4_ADD_EFFECT(videorecord videorecord.cpp)
|
|
target_link_libraries(kwin4_effect_videorecord ${CAPTURY_LDFLAGS})
|
|
install( FILES videorecord.desktop DESTINATION ${SERVICES_INSTALL_DIR}/kwin )
|
|
endif( HAVE_CAPTURY )
|
|
|