Welcome back to kcmkwin - so far only desktop

Note to people compiling from source: it's only the default of the
cmake variable which got changed. You have to delete the variable
from the cache to get this change.
This commit is contained in:
Martin Gräßlin 2013-09-27 13:45:25 +02:00
parent f8e4dcc115
commit 5d185a9adc
2 changed files with 16 additions and 14 deletions

View file

@ -3,7 +3,7 @@ INCLUDE(CMakeDependentOption)
OPTION(KWIN_BUILD_DECORATIONS "Enable building of KWin decorations." ON) OPTION(KWIN_BUILD_DECORATIONS "Enable building of KWin decorations." ON)
OPTION(KWIN_BUILD_OXYGEN "Enable building of default decoration Oxygen" ON) OPTION(KWIN_BUILD_OXYGEN "Enable building of default decoration Oxygen" ON)
OPTION(KWIN_BUILD_KCMS "Enable building of KWin configuration modules." OFF) OPTION(KWIN_BUILD_KCMS "Enable building of KWin configuration modules." ON)
OPTION(KWIN_MOBILE_EFFECTS "Only build effects relevant for mobile devices" OFF) OPTION(KWIN_MOBILE_EFFECTS "Only build effects relevant for mobile devices" OFF)
OPTION(KWIN_BUILD_TABBOX "Enable building of KWin Tabbox functionality" ON) OPTION(KWIN_BUILD_TABBOX "Enable building of KWin Tabbox functionality" ON)
OPTION(KWIN_BUILD_SCREENEDGES "Enable building of KWin with screen edge support" ON) OPTION(KWIN_BUILD_SCREENEDGES "Enable building of KWin with screen edge support" ON)

View file

@ -1,15 +1,17 @@
add_subdirectory( kwinoptions ) remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_STRICT_ITERATORS -DQT_NO_CAST_FROM_BYTEARRAY -DQT_NO_KEYWORDS)
add_subdirectory( kwindecoration )
add_subdirectory( kwinrules ) # add_subdirectory( kwinoptions )
add_subdirectory( kwincompositing ) # add_subdirectory( kwindecoration )
if(KWIN_BUILD_SCREENEDGES) # add_subdirectory( kwinrules )
add_subdirectory( kwinscreenedges ) # add_subdirectory( kwincompositing )
endif() # if(KWIN_BUILD_SCREENEDGES)
if(KWIN_BUILD_SCRIPTING) # add_subdirectory( kwinscreenedges )
add_subdirectory( kwinscripts ) # endif()
endif() # if(KWIN_BUILD_SCRIPTING)
# add_subdirectory( kwinscripts )
# endif()
add_subdirectory( kwindesktop ) add_subdirectory( kwindesktop )
if( KWIN_BUILD_TABBOX ) # if( KWIN_BUILD_TABBOX )
add_subdirectory( kwintabbox ) # add_subdirectory( kwintabbox )
endif() # endif()