Merge pull request #259 from akdor1154/glslFlag

add GLSL compile flag to CMakeLists
This commit is contained in:
Richard Grenville 2015-01-10 12:13:38 +08:00
commit e2540f7885
1 changed files with 5 additions and 0 deletions

View File

@ -49,6 +49,11 @@ if (CONFIG_VSYNC_OPENGL)
list(APPEND compton_SRCS src/opengl.c)
endif ()
option(CONFIG_VSYNC_OPENGL_GLSL "Enable GLSL" ON)
if (CONFIG_VSYNC_OPENGL_GLSL)
add_definitions("-DCONFIG_VSYNC_OPENGL_GLSL")
endif ()
option(CONFIG_XINERAMA "Enable additional Xinerama features" ON)
if (CONFIG_XINERAMA)
add_definitions("-DCONFIG_XINERAMA")