From b0d04895cc9d9067c6edf4c1281b07c057ec1e83 Mon Sep 17 00:00:00 2001 From: Vlad Zahorodnii Date: Mon, 31 Oct 2022 22:52:56 +0200 Subject: [PATCH] build: Link testOpenGLContextAttributeBuilder with epoxy::epoxy --- autotests/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autotests/CMakeLists.txt b/autotests/CMakeLists.txt index f3b5a36752..3e2f0919f3 100644 --- a/autotests/CMakeLists.txt +++ b/autotests/CMakeLists.txt @@ -198,7 +198,7 @@ if (HAVE_EPOXY_GLX) set(testOpenGLContextAttributeBuilder_SRCS ${testOpenGLContextAttributeBuilder_SRCS} ../src/backends/x11/standalone/x11_standalone_glx_context_attribute_builder.cpp) endif() add_executable(testOpenGLContextAttributeBuilder ${testOpenGLContextAttributeBuilder_SRCS}) -target_link_libraries(testOpenGLContextAttributeBuilder Qt::Test) +target_link_libraries(testOpenGLContextAttributeBuilder epoxy::epoxy Qt::Test) add_test(NAME kwin-testOpenGLContextAttributeBuilder COMMAND testOpenGLContextAttributeBuilder) ecm_mark_as_test(testOpenGLContextAttributeBuilder)