1 # dEQP-GLES31 2 3 include_directories( 4 ../glshared 5 . # For child modules 6 ) 7 8 add_subdirectory(functional) 9 add_subdirectory(stress) 10 11 include_directories( 12 functional 13 stress 14 ) 15 16 set(DEQP_GLES31_SRCS 17 tes31Context.cpp 18 tes31Context.hpp 19 tes31InfoTests.cpp 20 tes31InfoTests.hpp 21 tes31TestCase.cpp 22 tes31TestCase.hpp 23 tes31TestPackage.cpp 24 tes31TestPackage.hpp 25 ) 26 27 set(DEQP_GLES31_LIBS 28 deqp-gles31-functional 29 deqp-gles31-stress 30 tcutil 31 glutil 32 ${DEQP_GLES3_LIBRARIES} 33 ) 34 35 add_deqp_module(deqp-gles31 "${DEQP_GLES31_SRCS}" "${DEQP_GLES31_LIBS}" tes31TestPackageEntry.cpp) 36 37 # Data directories 38 add_data_dir(deqp-gles31 ../../data/gles31/data gles31/data) 39 add_data_dir(deqp-gles31 ../../data/gles31/shaders gles31/shaders) 40