Mark OpenGL and GLEW as required in cmake.

(cherry-picked from commit 8582ce1044)
This commit is contained in:
Pentarctagon 2018-05-10 20:44:13 -05:00 committed by Pentarctagon
parent b4e612239e
commit bb87cef484

View file

@ -76,8 +76,8 @@ else()
message(WARNING "You are cross-compiling. Skipping IEEE 754 test.")
endif()
find_package(OpenGL)
find_package(GLEW)
find_package(OpenGL REQUIRED)
find_package(GLEW REQUIRED)
find_package(SDL2 2.0.4 REQUIRED)
find_package(Crypto 1.0 REQUIRED)
find_package(Boost 1.56 REQUIRED COMPONENTS iostreams program_options regex system random)