From 477631d9ec2d66453f27949c0a3c0b9a2de20fe1 Mon Sep 17 00:00:00 2001 From: Aurelien Jarno Date: Mon, 6 Dec 2021 16:45:31 +0100 Subject: cmake: fix linking with WITH_X11_XF86VMODE and bfd Fix typos in the variables of the Xxf86vm libray to fix link failure with bfd. These variables are defined in platform_unix.cmake. Reviewed By: zeddb Differential Revision: https://developer.blender.org/D12911 --- intern/ghost/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'intern/ghost') diff --git a/intern/ghost/CMakeLists.txt b/intern/ghost/CMakeLists.txt index 41642311185..84f156949aa 100644 --- a/intern/ghost/CMakeLists.txt +++ b/intern/ghost/CMakeLists.txt @@ -245,10 +245,10 @@ elseif(WITH_GHOST_X11 OR WITH_GHOST_WAYLAND) if(WITH_X11_XF86VMODE) add_definitions(-DWITH_X11_XF86VMODE) list(APPEND INC_SYS - ${X11_xf86vmode_INCLUDE_PATH} + ${X11_Xxf86vmode_INCLUDE_PATH} ) list(APPEND LIB - ${X11_Xf86vmode_LIB} + ${X11_Xxf86vmode_LIB} ) endif() -- cgit v1.2.3