Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
PimCommon
Commits
f8f00bb4
Commit
f8f00bb4
authored
Dec 15, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
GIT_SILENT: Fix typo
parent
ff469fb3
Pipeline
#44190
skipped
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
CMakeLists.txt
CMakeLists.txt
+4
-4
src/pimcommon/CMakeLists.txt
src/pimcommon/CMakeLists.txt
+1
-1
src/pimcommonakonadi/CMakeLists.txt
src/pimcommonakonadi/CMakeLists.txt
+1
-1
No files found.
CMakeLists.txt
View file @
f8f00bb4
...
...
@@ -65,14 +65,14 @@ find_package(KF5GrantleeTheme ${GRANTLEETHEME_LIB_VERSION} CONFIG REQUIRED)
find_package
(
KF5Purpose
${
KF5_MIN_VERSION
}
CONFIG REQUIRED
)
option
(
USE_UNI
F
Y_CMAKE_SUPPORT
"Use UNI
F
Y cmake support (speedup compile time)"
FALSE
)
option
(
USE_UNI
T
Y_CMAKE_SUPPORT
"Use UNI
T
Y cmake support (speedup compile time)"
FALSE
)
set
(
COMPILE_WITH_CMAKE_SUPPORT false
)
if
(
USE_UNI
F
Y_CMAKE_SUPPORT
)
set
(
COMPILE_WITH_
UNITY_
CMAKE_SUPPORT false
)
if
(
USE_UNI
T
Y_CMAKE_SUPPORT
)
if
(
${
CMAKE_VERSION
}
VERSION_LESS
"3.16.0"
)
message
(
STATUS
"CMAKE version is less than 3.16.0 . We can't use cmake unify build support"
)
else
()
set
(
COMPILE_WITH_CMAKE_SUPPORT true
)
set
(
COMPILE_WITH_
UNITY_
CMAKE_SUPPORT true
)
endif
()
endif
()
...
...
src/pimcommon/CMakeLists.txt
View file @
f8f00bb4
...
...
@@ -165,7 +165,7 @@ kconfig_add_kcfg_files(libpimcommon_SRCS
)
add_library
(
KF5PimCommon
${
libpimcommon_SRCS
}
)
if
(
COMPILE_WITH_CMAKE_SUPPORT
)
if
(
COMPILE_WITH_
UNITY_
CMAKE_SUPPORT
)
set_target_properties
(
KF5PimCommon PROPERTIES UNITY_BUILD ON
)
endif
()
generate_export_header
(
KF5PimCommon BASE_NAME pimcommon
)
...
...
src/pimcommonakonadi/CMakeLists.txt
View file @
f8f00bb4
...
...
@@ -140,7 +140,7 @@ ecm_qt_declare_logging_category(libpimcommonakonadi_SRCS HEADER pimcommonakonadi
add_library
(
KF5PimCommonAkonadi
${
libpimcommonakonadi_SRCS
}
)
if
(
COMPILE_WITH_CMAKE_SUPPORT
)
if
(
COMPILE_WITH_
UNITY_
CMAKE_SUPPORT
)
set_target_properties
(
KF5PimCommonAkonadi PROPERTIES UNITY_BUILD ON
)
endif
()
...
...
Write
Preview
Markdown
is supported
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