From 095513529094de471ef552619f2497e556aa01bd Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Mon, 11 Feb 2013 13:08:41 -0600 Subject: [PATCH] Add the option to turn on only the EGL interface to use desktop OpenGL with it. --- CMakeLists.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 843c140408..8f8face486 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,8 @@ # cmake_minimum_required(VERSION 2.6) -option(USE_GLES "Enables GLES, disables OGL" OFF) +option(USE_GLES "Enables GLES And EGL, disables OGL" OFF) +option(USE_EGL "Enables EGL OpenGL Interface" OFF) option(DISABLE_WX "Disable wxWidgets (use CLI interface)" OFF) option(FASTLOG "Enable all logs" OFF) @@ -250,6 +251,11 @@ if(USE_GLES) add_definitions(-DUSE_EGL) set(USE_EGL True) endif() + +if(USE_EGL) + message("EGL OpenGL interface enabled") + add_definitions(-DUSE_EGL) +endif() add_definitions(-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE) ########################################