• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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	tes31TestPackage.cpp
24	tes31TestCaseWrapper.hpp
25	tes31TestPackage.hpp
26	tgl45TestPackage.cpp
27	tgl45TestPackage.hpp
28	)
29
30set(DEQP_GLES31_LIBS
31	deqp-gles31-functional
32	deqp-gles31-stress
33	tcutil
34	glutil
35	${DEQP_GLES3_LIBRARIES}
36	)
37
38add_deqp_module(deqp-gles31 "${DEQP_GLES31_SRCS}" "${DEQP_GLES31_LIBS}" tes31TestPackageEntry.cpp)
39
40# Data directories
41add_data_dir(deqp-gles31 ../../data/gles31/data		gles31/data)
42add_data_dir(deqp-gles31 ../../data/gles31/shaders	gles31/shaders)
43