dcf91d4321
We have lots of inconsistency at the moment in CMakeLists.txt files. Most of it is due to kwin being a very old project. This change hopefully fixes all of it.
43 lines
1.1 KiB
CMake
43 lines
1.1 KiB
CMake
include_directories(${Qt5Core_PRIVATE_INCLUDE_DIRS})
|
|
include_directories(${Qt5Gui_PRIVATE_INCLUDE_DIRS})
|
|
|
|
set(QPA_SOURCES
|
|
abstractplatformcontext.cpp
|
|
backingstore.cpp
|
|
eglhelpers.cpp
|
|
integration.cpp
|
|
main.cpp
|
|
nativeinterface.cpp
|
|
offscreensurface.cpp
|
|
platformcursor.cpp
|
|
screen.cpp
|
|
sharingplatformcontext.cpp
|
|
window.cpp
|
|
)
|
|
|
|
include(ECMQtDeclareLoggingCategory)
|
|
ecm_qt_declare_logging_category(QPA_SOURCES HEADER logging.h IDENTIFIER KWIN_QPA CATEGORY_NAME kwin_qpa_plugin DEFAULT_SEVERITY Critical)
|
|
|
|
add_library(KWinQpaPlugin MODULE ${QPA_SOURCES})
|
|
set_target_properties(KWinQpaPlugin PROPERTIES LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/platforms/")
|
|
|
|
set(QT5PLATFORMSUPPORT_LIBS
|
|
Qt5FontDatabaseSupport::Qt5FontDatabaseSupport
|
|
Qt5ThemeSupport::Qt5ThemeSupport
|
|
Qt5EventDispatcherSupport::Qt5EventDispatcherSupport
|
|
)
|
|
|
|
target_link_libraries(KWinQpaPlugin
|
|
${FREETYPE_LIBRARIES}
|
|
${QT5PLATFORMSUPPORT_LIBS}
|
|
Fontconfig::Fontconfig
|
|
KF5::WaylandClient
|
|
kwin
|
|
)
|
|
|
|
install(
|
|
TARGETS
|
|
KWinQpaPlugin
|
|
DESTINATION
|
|
${PLUGIN_INSTALL_DIR}/platforms/
|
|
)
|