d89777bcac
This is needed to make KWin build-able on non-Linux, but is actually only a workaround. The dependency should also be available on non-Linux. This disables the EGL integration in the Wayland backend (QPainter still available) and the EGL fallback in the qpa plugin (preferred context sharing still available, but requires a working OpenGL Scene). REVIEW: 126202
35 lines
770 B
CMake
35 lines
770 B
CMake
include_directories(${Qt5Core_PRIVATE_INCLUDE_DIRS})
|
|
include_directories(${Qt5Gui_PRIVATE_INCLUDE_DIRS})
|
|
add_definitions(-DQ_FONTCONFIGDATABASE)
|
|
|
|
set(QPA_SOURCES
|
|
abstractplatformcontext.cpp
|
|
backingstore.cpp
|
|
integration.cpp
|
|
main.cpp
|
|
nativeinterface.cpp
|
|
platformcontextwayland.cpp
|
|
screen.cpp
|
|
sharingplatformcontext.cpp
|
|
window.cpp
|
|
)
|
|
|
|
add_library(KWinQpaPlugin MODULE ${QPA_SOURCES})
|
|
target_link_libraries(KWinQpaPlugin
|
|
kwin
|
|
KF5::WaylandClient
|
|
Qt5PlatformSupport::Qt5PlatformSupport
|
|
${FONTCONFIG_LIBRARIES}
|
|
${FREETYPE_LIBRARIES}
|
|
)
|
|
|
|
if(HAVE_WAYLAND_EGL)
|
|
target_link_libraries(KWinQpaPlugin Wayland::Egl)
|
|
endif()
|
|
|
|
install(
|
|
TARGETS
|
|
KWinQpaPlugin
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/platforms/
|
|
)
|