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 # EGL utilities
     13 add_subdirectory(egl)
     14 
     15 if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/randomshaders)
     16 	add_subdirectory(randomshaders)
     17 endif ()
     18 
     19 if (IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/referencerenderer)
     20 	add_subdirectory(referencerenderer)
     21 endif ()
     22 
     23 # Platform library
     24 add_subdirectory(platform)
     25