Home | History | Annotate | Download | only in framework
      1 # Test framework cmake file
      2 
      3 # C integration library
      4 add_subdirectory(qphelper)
      5 
      6 # Common test util (tcutil).
      7 add_subdirectory(common)
      8 
      9 # Common OpenGL utilities
     10 add_subdirectory(opengl)
     11 
     12 if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/randomshaders)
     13 	add_subdirectory(randomshaders)
     14 endif ()
     15 
     16 if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/referencerenderer)
     17 	add_subdirectory(referencerenderer)
     18 endif ()
     19 
     20 if (DEQP_SUPPORT_EGL)
     21 	add_subdirectory(egl)
     22 endif ()
     23 
     24 # Platform library
     25 add_subdirectory(platform)
     26