From c0c700ed115e99586451cb80ab8e5d51dd890fea Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 16 Jan 2023 15:12:15 +0000 Subject: [PATCH] Tests: Add missing library dependencies for LibGL tests These are required for running on Lagom. --- Tests/LibGL/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tests/LibGL/CMakeLists.txt b/Tests/LibGL/CMakeLists.txt index f7f43e3c73..feb517cb34 100644 --- a/Tests/LibGL/CMakeLists.txt +++ b/Tests/LibGL/CMakeLists.txt @@ -5,7 +5,7 @@ set(TEST_SOURCES ) foreach(source IN LISTS TEST_SOURCES) - serenity_test("${source}" LibGL LIBS LibCore LibGfx LibGL) + serenity_test("${source}" LibGL LIBS LibCore LibGfx LibGL LibGPU LibSoftGPU) endforeach() install(DIRECTORY reference-images DESTINATION usr/Tests/LibGL)