From 5ec710ddf6545cb9c18c2fc83f9ead6029c661f1 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Fri, 18 Jul 2014 09:40:23 -0700 Subject: [PATCH] fix re-set of LIBOVR_LIBRARIES in find module --- cmake/modules/FindLibOVR.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/modules/FindLibOVR.cmake b/cmake/modules/FindLibOVR.cmake index c2f40a3d2d..06cee5e87e 100644 --- a/cmake/modules/FindLibOVR.cmake +++ b/cmake/modules/FindLibOVR.cmake @@ -54,7 +54,7 @@ if (UNIX) select_library_configurations(UDEV) select_library_configurations(XINERAMA) - set(${LIBOVR_LIBRARIES} ${LIBOVR_LIBRARIES} ${UDEV_LIBRARY} ${XINERAMA_LIBRARY}) + set(LIBOVR_LIBRARIES ${LIBOVR_LIBRARIES} ${UDEV_LIBRARY} ${XINERAMA_LIBRARY}) endif () include(FindPackageHandleStandardArgs)