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
PIM
PIM IncidenceEditor
Commits
f3343881
Commit
f3343881
authored
Mar 25, 2019
by
Laurent Montel
😁
Browse files
Workaround qt5.13 bug
parent
dd509d60
Changes
1
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
f3343881
...
...
@@ -78,7 +78,12 @@ configure_file(config-enterprise.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/src/config-
########### Targets ###########
add_definitions
(
-DQT_DISABLE_DEPRECATED_BEFORE=0x060000
)
# workaround for https://bugreports.qt.io/browse/QTBUG-74665 (bug in qt5.13 reevaluate it)
if
(
${
Qt5Widgets_VERSION
}
STRGREATER
"5.13"
)
MESSAGE
(
STATUS
"Qt version:
${
Qt5Widgets_VERSION
}
DISABLE compile without deprecated methods. bug QTBUG-74665"
)
else
()
add_definitions
(
-DQT_DISABLE_DEPRECATED_BEFORE=0x060000
)
endif
()
########### CMake Config Files ###########
set
(
CMAKECONFIG_INSTALL_DIR
"
${
KDE_INSTALL_CMAKEPACKAGEDIR
}
/KF5IncidenceEditor"
)
...
...
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