You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
1.7 KiB
CMake
66 lines
1.7 KiB
CMake
find_package(Qt5 CONFIG REQUIRED COMPONENTS
|
|
Gui
|
|
Core
|
|
DBus
|
|
UiTools
|
|
Widgets
|
|
X11Extras
|
|
OpenGL
|
|
Network
|
|
Xml
|
|
)
|
|
|
|
find_package(KF5CoreAddons)
|
|
find_package(KF5Config)
|
|
find_package(KF5WindowSystem)
|
|
|
|
include_directories(${Qt5Widgets_INCLUDE_DIRS} ${Qt5X11Extras_INCLUDE_DIRS} ${Qt5Network_INCLUDE_DIRS} ${Qt5OpenGL_INCLUDE_DIRS} ${Qt5Xml_INCLUDE_DIRS})
|
|
add_definitions(${Qt5Widgets_DEFINITIONS})
|
|
|
|
find_path(EFFECTS_H kwineffects.h PATH_SUFFIXES kf5)
|
|
|
|
if (EFFECTS_H)
|
|
include_directories(${EFFECTS_H})
|
|
else (EFFECTS_H)
|
|
message(STATUS "didnt find kwineffects.h, not building effects")
|
|
endif (EFFECTS_H)
|
|
|
|
find_library(KWIN_EFFECTS NAMES kwineffects PATH_SUFFIXES kf5)
|
|
find_library(KWIN_GLUTILS NAMES kwinglutils PATH_SUFFIXES kf5)
|
|
find_library(OPENGL NAMES GL)
|
|
|
|
if (NOT KWIN_EFFECTS)
|
|
message(STATUS "didnt find kwineffects lib, not building effects")
|
|
endif (NOT KWIN_EFFECTS)
|
|
|
|
if (NOT KWIN_GLUTILS)
|
|
message(STATUS "didnt find kwin glutils lib, not building effects")
|
|
endif (NOT KWIN_GLUTILS)
|
|
|
|
if (NOT OPENGL)
|
|
message(STATUS "didnt find opengl, not building effects")
|
|
endif (NOT OPENGL)
|
|
|
|
if (NOT EFFECTS_H OR NOT KWIN_GLUTILS OR NOT KWIN_EFFECTS OR NOT OPENGL)
|
|
message(FATAL_ERROR "cant continue")
|
|
endif (NOT EFFECTS_H OR NOT KWIN_GLUTILS OR NOT KWIN_EFFECTS OR NOT OPENGL)
|
|
|
|
add_library(roundedwindow MODULE roundedwindow.cpp resources.qrc)
|
|
|
|
target_link_libraries(roundedwindow
|
|
PUBLIC
|
|
Qt5::Core
|
|
Qt5::Gui
|
|
Qt5::DBus
|
|
${KWIN_EFFECTS}
|
|
${KWIN_GLUTILS}
|
|
epoxy
|
|
GL
|
|
PRIVATE
|
|
KF5::CoreAddons
|
|
KF5::ConfigCore
|
|
KF5::WindowSystem
|
|
)
|
|
|
|
install (TARGETS roundedwindow
|
|
DESTINATION ${QT_PLUGINS_DIR}/kwin/effects/plugins) |