1# Memory tests 2 3include_directories( 4 .. 5 ../util 6 ${DEQP_INL_DIR} 7 ) 8 9set(DEQP_VK_VKSC_MEMORY_SRCS 10 vktMemoryTests.cpp 11 vktMemoryTests.hpp 12 vktMemoryAllocationTests.cpp 13 vktMemoryAllocationTests.hpp 14 vktMemoryPipelineBarrierTests.hpp 15 vktMemoryPipelineBarrierTests.cpp 16 vktMemoryRequirementsTests.cpp 17 vktMemoryRequirementsTests.hpp 18 vktMemoryBindingTests.cpp 19 vktMemoryBindingTests.hpp 20 vktMemoryExternalMemoryHostTests.cpp 21 vktMemoryExternalMemoryHostTests.hpp 22 ) 23 24set(DEQP_VK_MEMORY_SRCS 25 vktMemoryMappingTests.cpp 26 vktMemoryMappingTests.hpp 27 vktMemoryAddressBindingTests.cpp 28 vktMemoryAddressBindingTests.hpp 29 vktMemoryDeviceMemoryReportTests.cpp 30 vktMemoryDeviceMemoryReportTests.hpp 31 ) 32 33PCH(DEQP_VK_MEMORY_SRCS ../pch.cpp) 34 35add_library(deqp-vk-memory STATIC ${DEQP_VK_VKSC_MEMORY_SRCS} ${DEQP_VK_MEMORY_SRCS}) 36target_link_libraries(deqp-vk-memory tcutil vkutil) 37 38add_library(deqp-vksc-memory STATIC ${DEQP_VK_VKSC_MEMORY_SRCS}) 39target_include_directories(deqp-vksc-memory BEFORE PUBLIC ${CMAKE_SOURCE_DIR}/external/vulkancts/framework/vulkan/generated/vulkansc) 40target_link_libraries(deqp-vksc-memory PUBLIC deqp-vksc-util tcutil vkscutil) 41