From e7c4eddace27272ba4d14f7e2fd0a39256e3c656 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Fri, 14 Apr 2017 17:16:15 +0200 Subject: [PATCH] Add fatal error in CMake when trying to build WITH_GAMEENGINE but without WITH_LEGACY_OPENGL This won't work currently. --- CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 19e13612baa..9789e563681 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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")