• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# GL-CTS.es32
2
3include_directories(
4	../gles31/functional
5	../common
6	)
7
8set(GLCTS_ES32_SRCS
9	es32cTestPackage.cpp
10	es32cTestPackage.hpp
11	es32cCopyImageTests.cpp
12	es32cCopyImageTests.hpp
13	)
14
15set(GLCTS_ES32_LIBS
16	glcts-common
17	tcutil
18	glutil
19	${DEQP_GLES32_LIBRARIES}
20	)
21
22add_library(glcts-es32 STATIC ${GLCTS_ES32_SRCS})
23target_link_libraries(glcts-es32 ${GLCTS_ES32_LIBS})
24