| Summary: | Unable to compile with Qt 5.6 | ||
|---|---|---|---|
| Product: | [Frameworks and Libraries] frameworks-kdesignerplugin | Reporter: | rezso <rezso> |
| Component: | general | Assignee: | Alex Merry <alex.merry> |
| Status: | RESOLVED WORKSFORME | ||
| Severity: | normal | CC: | cfeck, kdelibs-bugs-null |
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Other | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
rezso
2016-03-20 11:26:49 UTC
Are you compiling from source? The KF5WebKit dependency is already optional in KF5DesignerPlugin, see CMakeLists.txt:
...
find_package(KF5WebKit ${KF5_DEP_VERSION})
set_package_properties(KF5WebKit PROPERTIES TYPE OPTIONAL
PURPOSE "Required to build the Qt Designer plugin for the KDEWebKit widgets")
...
if(Qt5Designer_FOUND AND KF5WebKit_FOUND)
set(BUILD_KDEWEBKIT_DESIGNER_PLUGIN TRUE)
endif()
...
Yes, I compiled from source. And the kdewebkit is really optional dependency, sorry for this issue. |