Home | History | Annotate | Download | only in x11_glx
      1 
      2 message("*** Using X11 GLX target")
      3 set(DEQP_TARGET_NAME 	"X11 GLX")
      4 set(DEQP_SUPPORT_GLES2	ON)
      5 set(DEQP_SUPPORT_GLES3	ON)
      6 set(DEQP_SUPPORT_OPENGL	ON)
      7 set(DEQP_SUPPORT_EGL	OFF)
      8 set(DEQP_SUPPORT_GLX	ON)
      9 
     10 # Use X11 target
     11 set(DEQP_USE_X11	ON)
     12 
     13 find_package(X11)
     14 if (NOT X11_FOUND)
     15 	message(FATAL_ERROR "X11 development package not found")
     16 endif ()
     17 
     18 set(DEQP_PLATFORM_LIBRARIES ${X11_LIBRARIES})
     19 include_directories(${X11_INCLUDE_DIR})
     20