1include_directories( 2 .. 3 ${DEQP_INL_DIR} 4) 5 6set(DEQP_VK_IMAGE_SRCS 7 vktImageTests.cpp 8 vktImageTests.hpp 9 vktImageTestsUtil.cpp 10 vktImageTestsUtil.hpp 11 vktImageAstcDecodeModeTests.cpp 12 vktImageAstcDecodeModeTests.hpp 13 vktImageAtomicOperationTests.cpp 14 vktImageAtomicOperationTests.hpp 15 vktImageAtomicSpirvShaders.cpp 16 vktImageAtomicSpirvShaders.hpp 17 vktImageLoadStoreTests.cpp 18 vktImageLoadStoreTests.hpp 19 vktImageMismatchedFormatsTests.cpp 20 vktImageMismatchedFormatsTests.hpp 21 vktImageMutableTests.cpp 22 vktImageMutableTests.hpp 23 vktImageQualifiersTests.cpp 24 vktImageQualifiersTests.hpp 25 vktImageSizeTests.cpp 26 vktImageSizeTests.hpp 27 vktImageTexture.cpp 28 vktImageTexture.hpp 29 vktImageMultisampleLoadStoreTests.cpp 30 vktImageMultisampleLoadStoreTests.hpp 31 vktImageCompressionTranscodingSupport.cpp 32 vktImageCompressionTranscodingSupport.hpp 33 vktImageLoadStoreUtil.cpp 34 vktImageLoadStoreUtil.hpp 35 vktImageTranscodingSupportTests.cpp 36 vktImageTranscodingSupportTests.hpp 37 vktImageMisalignedCubeTests.cpp 38 vktImageMisalignedCubeTests.hpp 39 vktImageSampleDrawnCubeFaceTests.cpp 40 vktImageSampleDrawnCubeFaceTests.hpp 41 vktImageSubresourceLayoutTests.cpp 42 vktImageSubresourceLayoutTests.hpp 43 vktImageMismatchedWriteOpTests.cpp 44 vktImageMismatchedWriteOpTests.hpp 45 vktImageDepthStencilDescriptorTests.cpp 46 vktImageDepthStencilDescriptorTests.hpp 47 vktImageSampleCompressedTextureTests.cpp 48 vktImageSampleCompressedTextureTests.hpp 49 ) 50 51set(DEQP_VK_IMAGE_LIBS 52 tcutil 53 vkutil 54 ) 55 56PCH(DEQP_VK_IMAGE_SRCS ../pch.cpp) 57 58add_library(deqp-vk-image STATIC ${DEQP_VK_IMAGE_SRCS}) 59target_link_libraries(deqp-vk-image ${DEQP_VK_IMAGE_LIBS}) 60