forked from n4n0GH/hello
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakeLists.txt
More file actions
28 lines (22 loc) · 714 Bytes
/
CMakeLists.txt
File metadata and controls
28 lines (22 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
cmake_minimum_required(VERSION 3.0)
project(hello)
set(WITH_COLOR_SCHEME yes CACHE BOOL "Build with color-scheme")
set(WITH_KSTYLE no CACHE BOOL "Build with kstyle")
set(WITH_KWIN_EFFECTS yes CACHE BOOL "Build with kwin-effects")
set(WITH_PLASMA_THEME yes CACHE BOOL "Build with plasma theme")
set(WITH_WINDOW_DECORATION yes CACHE BOOL "Build with window-decoration")
if(WITH_COLOR_SCHEME)
add_subdirectory(color-scheme)
endif()
if(WITH_KSTYLE)
add_subdirectory(kstyle)
endif()
if(WITH_KWIN_EFFECTS)
add_subdirectory(kwin-effects)
endif()
if(WITH_PLASMA_THEME)
add_subdirectory(plasma-theme)
endif()
if(WITH_WINDOW_DECORATION)
add_subdirectory(window-decoration)
endif()