1# Shared GL(ES) test code 2 3set(DEQP_GL_SHARED_SRCS 4 glsBuiltinPrecisionTests.cpp 5 glsBuiltinPrecisionTests.hpp 6 glsCalibration.cpp 7 glsCalibration.hpp 8 glsFboCompletenessTests.cpp 9 glsFboCompletenessTests.hpp 10 glsFboUtil.cpp 11 glsFboUtil.hpp 12 glsFragmentOpUtil.cpp 13 glsFragmentOpUtil.hpp 14 glsLifetimeTests.cpp 15 glsLifetimeTests.hpp 16 glsLongStressCase.cpp 17 glsLongStressCase.hpp 18 glsLongStressTestUtil.cpp 19 glsLongStressTestUtil.hpp 20 glsMemoryStressCase.cpp 21 glsMemoryStressCase.hpp 22 glsRandomShaderCase.cpp 23 glsRandomShaderCase.hpp 24 glsShaderConstExprTests.cpp 25 glsShaderConstExprTests.hpp 26 glsShaderLibrary.cpp 27 glsShaderLibrary.hpp 28 glsShaderLibraryCase.cpp 29 glsShaderLibraryCase.hpp 30 glsShaderPerformanceCase.cpp 31 glsShaderPerformanceCase.hpp 32 glsShaderRenderCase.cpp 33 glsShaderRenderCase.hpp 34 glsStateQueryUtil.cpp 35 glsStateQueryUtil.hpp 36 glsScissorTests.cpp 37 glsScissorTests.hpp 38 glsTextureStateQueryTests.cpp 39 glsTextureStateQueryTests.hpp 40 glsTextureTestUtil.cpp 41 glsTextureTestUtil.hpp 42 glsUniformBlockCase.cpp 43 glsUniformBlockCase.hpp 44 glsVertexArrayTests.cpp 45 glsVertexArrayTests.hpp 46 glsDrawTest.cpp 47 glsDrawTest.hpp 48 glsShaderExecUtil.cpp 49 glsShaderExecUtil.hpp 50 glsSamplerObjectTest.hpp 51 glsSamplerObjectTest.cpp 52 glsShaderPerformanceMeasurer.cpp 53 glsShaderPerformanceMeasurer.hpp 54 glsRasterizationTestUtil.cpp 55 glsRasterizationTestUtil.hpp 56 glsInteractionTestUtil.cpp 57 glsInteractionTestUtil.hpp 58 glsRandomShaderProgram.cpp 59 glsRandomShaderProgram.hpp 60 glsFragOpInteractionCase.cpp 61 glsFragOpInteractionCase.hpp 62 glsStateChangePerfTestCases.cpp 63 glsStateChangePerfTestCases.hpp 64 glsBufferTestUtil.cpp 65 glsBufferTestUtil.hpp 66 glsAttributeLocationTests.hpp 67 glsAttributeLocationTests.cpp 68 glsRandomUniformBlockCase.cpp 69 glsRandomUniformBlockCase.hpp 70 glsTextureBufferCase.hpp 71 glsTextureBufferCase.cpp 72 ) 73 74add_library(deqp-gl-shared STATIC ${DEQP_GL_SHARED_SRCS}) 75target_link_libraries(deqp-gl-shared glutil glwrapper randomshaders tcutil glutil-sglr) 76