Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KMail
Commits
5c1fd793
Commit
5c1fd793
authored
Apr 09, 2021
by
Laurent Montel
Browse files
GIT_SILENT: fix option
parent
fe4d6d9d
Pipeline
#57075
passed with stage
in 27 minutes and 19 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
5c1fd793
...
...
@@ -167,10 +167,10 @@ endif()
option
(
USE_PRECOMPILED_HEADERS
"Use precompiled headers"
OFF
)
# Set to OFF when using clazy and such
set
(
COMPILE_WITH_CMAKE_PCH_SUPPORT
false
)
set
(
COMPILE_WITH_CMAKE_PCH_SUPPORT
OFF
)
macro
(
pim_target_precompile_headers
)
if
(
USE_PRECOMPILED_HEADERS
)
set
(
COMPILE_WITH_CMAKE_PCH_SUPPORT
true
)
set
(
COMPILE_WITH_CMAKE_PCH_SUPPORT
ON
)
if
(
COMPILE_WITH_CMAKE_PCH_SUPPORT
)
target_precompile_headers
(
${
ARGV
}
)
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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