forked from quickshell/quickshell
24 lines
683 B
CMake
24 lines
683 B
CMake
qt_add_library(quickshell-hyprland-surface-extensions STATIC
|
|
qml.cpp
|
|
manager.cpp
|
|
surface.cpp
|
|
)
|
|
|
|
qt_add_qml_module(quickshell-hyprland-surface-extensions
|
|
URI Quickshell.Hyprland._SurfaceExtensions
|
|
VERSION 0.1
|
|
DEPENDENCIES QtQml
|
|
)
|
|
|
|
install_qml_module(quickshell-hyprland-surface-extensions)
|
|
|
|
wl_proto(wlp-hyprland-surface hyprland-surface-v1 "${CMAKE_CURRENT_SOURCE_DIR}")
|
|
|
|
target_link_libraries(quickshell-hyprland-surface-extensions PRIVATE
|
|
Qt::Quick Qt::WaylandClient Qt::WaylandClientPrivate wayland-client
|
|
wlp-hyprland-surface
|
|
)
|
|
|
|
qs_module_pch(quickshell-hyprland-surface-extensions)
|
|
|
|
target_link_libraries(quickshell PRIVATE quickshell-hyprland-surface-extensionsplugin)
|