Home | History | Annotate | Download | only in memory
      1 # Memory tests
      2 
      3 include_directories(..)
      4 
      5 set(DEQP_VK_MEMORY_SRCS
      6 	vktMemoryTests.cpp
      7 	vktMemoryTests.hpp
      8 	vktMemoryAllocationTests.cpp
      9 	vktMemoryAllocationTests.hpp
     10 	vktMemoryMappingTests.cpp
     11 	vktMemoryMappingTests.hpp
     12 	vktMemoryPipelineBarrierTests.hpp
     13 	vktMemoryPipelineBarrierTests.cpp
     14 	)
     15 
     16 set(DEQP_VK_MEMORY_LIBS
     17 	deqp-vk-common
     18 	tcutil
     19 	vkutil
     20 	)
     21 
     22 add_library(deqp-vk-memory STATIC ${DEQP_VK_MEMORY_SRCS})
     23 target_link_libraries(deqp-vk-memory ${DEQP_VK_MEMORY_LIBS})
     24