diff --git a/CMakeLists.txt b/CMakeLists.txt index 0332f91ab..8a1becdb8 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -232,7 +232,11 @@ if( ${TARGET_ARCHITECTURE} MATCHES "x86_64" ) endif() option (HAVE_VULKAN "Enable Vulkan support" ON) -option (HAVE_GLES2 "Enable GLES2 support" ON) +if( APPLE ) + option (HAVE_GLES2 "Enable GLES2 support" OFF) +else() + option (HAVE_GLES2 "Enable GLES2 support" ON) +endif() # no, we're not using external asmjit for now, we made too many modifications to our's. # if the asmjit author uses our changes then we'll update this.