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:
parent
f8e4dcc115
commit
5d185a9adc
2 changed files with 16 additions and 14 deletions
|
@ -3,7 +3,7 @@ INCLUDE(CMakeDependentOption)
|
|||
|
||||
OPTION(KWIN_BUILD_DECORATIONS "Enable building of KWin decorations." 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_BUILD_TABBOX "Enable building of KWin Tabbox functionality" ON)
|
||||
OPTION(KWIN_BUILD_SCREENEDGES "Enable building of KWin with screen edge support" ON)
|
||||
|
|
|
@ -1,15 +1,17 @@
|
|||
add_subdirectory( kwinoptions )
|
||||
add_subdirectory( kwindecoration )
|
||||
add_subdirectory( kwinrules )
|
||||
add_subdirectory( kwincompositing )
|
||||
if(KWIN_BUILD_SCREENEDGES)
|
||||
add_subdirectory( kwinscreenedges )
|
||||
endif()
|
||||
if(KWIN_BUILD_SCRIPTING)
|
||||
add_subdirectory( kwinscripts )
|
||||
endif()
|
||||
remove_definitions(-DQT_NO_CAST_FROM_ASCII -DQT_STRICT_ITERATORS -DQT_NO_CAST_FROM_BYTEARRAY -DQT_NO_KEYWORDS)
|
||||
|
||||
# add_subdirectory( kwinoptions )
|
||||
# add_subdirectory( kwindecoration )
|
||||
# add_subdirectory( kwinrules )
|
||||
# add_subdirectory( kwincompositing )
|
||||
# if(KWIN_BUILD_SCREENEDGES)
|
||||
# add_subdirectory( kwinscreenedges )
|
||||
# endif()
|
||||
# if(KWIN_BUILD_SCRIPTING)
|
||||
# add_subdirectory( kwinscripts )
|
||||
# endif()
|
||||
add_subdirectory( kwindesktop )
|
||||
|
||||
if( KWIN_BUILD_TABBOX )
|
||||
add_subdirectory( kwintabbox )
|
||||
endif()
|
||||
# if( KWIN_BUILD_TABBOX )
|
||||
# add_subdirectory( kwintabbox )
|
||||
# endif()
|
||||
|
|
Loading…
Reference in a new issue