1include_directories(..) 2 3set(DEQP_VK_DRAW_SRCS 4 vktDrawTests.hpp 5 vktDrawTests.cpp 6 vktDrawIndexedTest.hpp 7 vktDrawIndexedTest.cpp 8 vktDrawIndirectTest.hpp 9 vktDrawIndirectTest.cpp 10 vktDrawInstancedTests.hpp 11 vktDrawInstancedTests.cpp 12 vktDrawShaderDrawParametersTests.hpp 13 vktDrawShaderDrawParametersTests.cpp 14 vktDrawSimpleTest.hpp 15 vktDrawSimpleTest.cpp 16 vktDrawNegativeViewportHeightTests.hpp 17 vktDrawNegativeViewportHeightTests.cpp 18 vktDrawBaseClass.hpp 19 vktDrawBaseClass.cpp 20 vktDrawCreateInfoUtil.hpp 21 vktDrawCreateInfoUtil.cpp 22 vktDrawImageObjectUtil.hpp 23 vktDrawImageObjectUtil.cpp 24 vktDrawBufferObjectUtil.hpp 25 vktDrawBufferObjectUtil.cpp 26 vktDrawTestCaseUtil.hpp 27 vktBasicDrawTests.hpp 28 vktBasicDrawTests.cpp 29) 30 31set(DEQP_VK_DRAW_LIBS 32 deqp-vk-common 33 tcutil 34 vkutil 35) 36 37add_library(deqp-vk-draw STATIC ${DEQP_VK_DRAW_SRCS}) 38target_link_libraries(deqp-vk-draw ${DEQP_VK_DRAW_LIBS}) 39