From 0ac47d9b18cf4072f0745d303e5cd05b979d2867 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20K=C3=BCgler?= Date: Tue, 6 Aug 2013 05:17:43 +0200 Subject: [PATCH] Disable effect config build With the fixed KPluginFactory macro, the KWIN_EFFECT_CONFIG_* macros seem to break. I'm looking for a solution to fix up the macro in kwineffects.h, or otherwise the usage in the plugins. The problem is that the macros of each plugin export the exact same class name, which is going to clash. Until I've found a solution, disable build of the config files, so it's not too disruptive for others. CCMAIL:kwin@kde.org --- effects/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/effects/CMakeLists.txt b/effects/CMakeLists.txt index 89e8f8977f..6a38147d29 100644 --- a/effects/CMakeLists.txt +++ b/effects/CMakeLists.txt @@ -178,5 +178,5 @@ endif() # Add the builtins plugin KWIN4_ADD_EFFECT( builtins ${kwin4_effect_builtins_sources} ) if( NOT KWIN_MOBILE_EFFECTS ) - KWIN4_ADD_EFFECT_CONFIG( builtins ${kwin4_effect_builtins_config_sources} ) +# KWIN4_ADD_EFFECT_CONFIG( builtins ${kwin4_effect_builtins_config_sources} ) endif()