ports/x11/disman/files/patch-CMakeLists.txt
Jan Beich b468e890e5 x11/disman: add new port
Disman is a display management service and library.

The service can communicate with the X11 windowing system and a
multitude of Wayland compositors. The library provides convenient
objects and methods for writing frontend GUI applications that
interact with the service.

Additionally the command line utility "dismanctl" is provided to query
and modify display settings directly from the command line.

https://gitlab.com/kwinft/disman
2021-11-04 23:16:51 +00:00

25 lines
747 B
Text

CMake Error at /usr/local/lib/cmake/Qt5/Qt5Config.cmake:28 (find_package):
find_package for module Qt5Test called with REQUIRED, but
CMAKE_DISABLE_FIND_PACKAGE_Qt5Test is enabled. A REQUIRED package cannot
be disabled.
Call Stack (most recent call first):
CMakeLists.txt:27 (find_package)
--- CMakeLists.txt.orig 2021-10-14 15:23:56 UTC
+++ CMakeLists.txt
@@ -28,7 +28,6 @@ find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED
Core
DBus
Gui
- Test
)
# Wayland backend plugin KWayland
@@ -66,6 +65,7 @@ add_subdirectory(service)
add_subdirectory(ctl)
add_subdirectory(backends)
if(BUILD_TESTING)
+ find_package(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED Test)
add_subdirectory(autotests)
add_subdirectory(tests)
endif()