From 4a0e6ea98f1899ca868c9629da55848bcf8ab26c Mon Sep 17 00:00:00 2001 From: six <64337177+authorisation@users.noreply.github.com> Date: Thu, 5 Mar 2026 15:30:38 +0100 Subject: [PATCH] fix(CMakeLists): add early check for libGLU --- Minecraft.Client/Build/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Minecraft.Client/Build/CMakeLists.txt b/Minecraft.Client/Build/CMakeLists.txt index f1824aeac..9a323b140 100644 --- a/Minecraft.Client/Build/CMakeLists.txt +++ b/Minecraft.Client/Build/CMakeLists.txt @@ -5223,6 +5223,7 @@ if(UNIX AND NOT APPLE) find_package(OpenGL REQUIRED) find_package(PkgConfig REQUIRED) pkg_check_modules(GLFW3 REQUIRED glfw3) + pkg_check_modules(GLU REQUIRED glu) target_include_directories(${PROJECT_NAME} PRIVATE ${GLFW3_INCLUDE_DIRS}