CMake configuration is now stopped if the Xrandr library (Linux) is not found

This commit is contained in:
Laurent Gomila 2011-09-10 18:36:12 +02:00
parent d6c1fda5bd
commit 78a625de22

View File

@ -100,6 +100,9 @@ endif()
find_package(OpenGL REQUIRED)
if(LINUX)
find_package(X11 REQUIRED)
if(NOT X11_Xrandr_FOUND)
message(FATAL_ERROR "Xrandr library not found")
endif()
endif()
# build the list of external libraries to link