Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Plasma
Plasma Workspace
Commits
ad0d1005
Commit
ad0d1005
authored
Mar 30, 2021
by
Alexander Lohnau
💬
Browse files
lookandfeel kcm: Simplify CMake if condition
parent
0737efbb
Changes
1
Hide whitespace changes
Inline
Side-by-side
kcms/lookandfeel/CMakeLists.txt
View file @
ad0d1005
...
...
@@ -5,14 +5,8 @@ if(X11_Xcursor_FOUND)
set
(
HAVE_XCURSOR TRUE
)
endif
()
if
(
${
Breeze_FOUND
}
)
if
(
${
BREEZE_WITH_KDECORATION
}
)
set
(
HAVE_BREEZE_DECO true
)
else
()
set
(
HAVE_BREEZE_DECO FALSE
)
endif
()
else
()
set
(
HAVE_BREEZE_DECO FALSE
)
if
(
${
Breeze_FOUND
}
AND
${
BREEZE_WITH_KDECORATION
}
)
set
(
HAVE_BREEZE_DECO TRUE
)
endif
()
configure_file
(
config-kcm.h.cmake
${
CMAKE_CURRENT_BINARY_DIR
}
/config-kcm.h
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment