Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Add the option to turn on only the EGL interface to use desktop OpenG…
…L with it.
  • Loading branch information
Sonicadvance1 committed Feb 11, 2013
1 parent 1c64b19 commit 0955135
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion CMakeLists.txt
Expand Up @@ -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)
Expand Down Expand Up @@ -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)

########################################
Expand Down

0 comments on commit 0955135

Please sign in to comment.