Add fatal error in CMake when trying to build WITH_GAMEENGINE but without WITH_LEGACY_OPENGL

This won't work currently.
This commit is contained in:
Bastien Montagne
2017-04-14 17:16:15 +02:00
parent 89e23c743e
commit e7c4eddace

View File

@@ -681,6 +681,10 @@ if(NOT WITH_GAMEENGINE AND WITH_PLAYER)
message(FATAL_ERROR "WITH_PLAYER requires WITH_GAMEENGINE")
endif()
if(WITH_GAMEENGINE AND NOT WITH_LEGACY_OPENGL)
message(FATAL_ERROR "WITH_GAME_ENGINE requires WITH_LEGACY_OPENGL")
endif()
if(NOT WITH_AUDASPACE)
if(WITH_OPENAL)
message(FATAL_ERROR "WITH_OPENAL requires WITH_AUDASPACE")