From dec532245bd16649e6bb34153a6d14b1ff3a6f61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= Date: Mon, 6 Dec 2010 21:39:06 +0100 Subject: [PATCH] Add some OpenGL effects not depending on GL --- effects/CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/effects/CMakeLists.txt b/effects/CMakeLists.txt index 6b615709dd..3d374c2cf4 100644 --- a/effects/CMakeLists.txt +++ b/effects/CMakeLists.txt @@ -88,25 +88,27 @@ include( zoom/CMakeLists.txt ) endif( NOT KWIN_HAVE_OPENGLES_COMPOSITING ) # OpenGL-specific effects +if( KWIN_HAVE_OPENGL_COMPOSITING ) + include( glide/CMakeLists.txt ) + include( sheet/CMakeLists.txt ) + include( wobblywindows/CMakeLists.txt ) +endif( KWIN_HAVE_OPENGL_COMPOSITING ) if( KWIN_HAVE_OPENGL_COMPOSITING AND NOT KWIN_HAVE_OPENGLES_COMPOSITING ) include( blur/CMakeLists.txt ) include( coverswitch/CMakeLists.txt ) include( cube/CMakeLists.txt ) include( explosion/CMakeLists.txt ) include( flipswitch/CMakeLists.txt ) - include( glide/CMakeLists.txt ) include( invert/CMakeLists.txt ) include( lookingglass/CMakeLists.txt ) include( magnifier/CMakeLists.txt ) include( mousemark/CMakeLists.txt ) include( screenshot/CMakeLists.txt ) include( sharpen/CMakeLists.txt ) - include( sheet/CMakeLists.txt ) include( snaphelper/CMakeLists.txt ) include( snow/CMakeLists.txt ) include( startupfeedback/CMakeLists.txt ) include( trackmouse/CMakeLists.txt ) - include( wobblywindows/CMakeLists.txt ) endif( KWIN_HAVE_OPENGL_COMPOSITING AND NOT KWIN_HAVE_OPENGLES_COMPOSITING ) ###############################################################################