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