1# Memory tests 2 3include_directories( 4 .. 5 ../util 6 ${DEQP_INL_DIR} 7 ) 8 9set(DEQP_VK_MEMORY_SRCS 10 vktMemoryTests.cpp 11 vktMemoryTests.hpp 12 vktMemoryAllocationTests.cpp 13 vktMemoryAllocationTests.hpp 14 vktMemoryMappingTests.cpp 15 vktMemoryMappingTests.hpp 16 vktMemoryPipelineBarrierTests.hpp 17 vktMemoryPipelineBarrierTests.cpp 18 vktMemoryRequirementsTests.cpp 19 vktMemoryRequirementsTests.hpp 20 vktMemoryBindingTests.cpp 21 vktMemoryBindingTests.hpp 22 vktMemoryExternalMemoryHostTests.cpp 23 vktMemoryExternalMemoryHostTests.hpp 24 vktMemoryDeviceMemoryReportTests.cpp 25 vktMemoryDeviceMemoryReportTests.hpp 26 ) 27 28set(DEQP_VK_MEMORY_LIBS 29 tcutil 30 vkutil 31 ) 32 33PCH(DEQP_VK_MEMORY_SRCS ../pch.cpp) 34 35add_library(deqp-vk-memory STATIC ${DEQP_VK_MEMORY_SRCS}) 36target_link_libraries(deqp-vk-memory ${DEQP_VK_MEMORY_LIBS}) 37