From bacce689580b81548f75c5949bcca00a8781fa41 Mon Sep 17 00:00:00 2001 From: "Evgeniy A. Dushistov" Date: Thu, 28 Oct 2021 18:43:46 +0300 Subject: [PATCH] fix linking error on Arch Linux Signed-off-by: Evgeniy A. Dushistov --- cmake/OmimHelpers.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/OmimHelpers.cmake b/cmake/OmimHelpers.cmake index 3c5d2e7b7b..811e3e9264 100644 --- a/cmake/OmimHelpers.cmake +++ b/cmake/OmimHelpers.cmake @@ -154,7 +154,7 @@ function(link_opengl target) if (PLATFORM_LINUX) omim_link_libraries( ${target} - ${OPENGL_gl_LIBRARY} + OpenGL::GL ) endif() endfunction()