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 vktDrawInvertedDepthRangesTests.hpp 13 vktDrawInvertedDepthRangesTests.cpp 14 vktDrawShaderDrawParametersTests.hpp 15 vktDrawShaderDrawParametersTests.cpp 16 vktDrawShaderLayerTests.hpp 17 vktDrawShaderLayerTests.cpp 18 vktDrawShaderViewportIndexTests.hpp 19 vktDrawShaderViewportIndexTests.cpp 20 vktDrawSimpleTest.hpp 21 vktDrawSimpleTest.cpp 22 vktDrawNegativeViewportHeightTests.hpp 23 vktDrawNegativeViewportHeightTests.cpp 24 vktDrawBaseClass.hpp 25 vktDrawBaseClass.cpp 26 vktDrawCreateInfoUtil.hpp 27 vktDrawCreateInfoUtil.cpp 28 vktDrawImageObjectUtil.hpp 29 vktDrawImageObjectUtil.cpp 30 vktDrawBufferObjectUtil.hpp 31 vktDrawBufferObjectUtil.cpp 32 vktDrawTestCaseUtil.hpp 33 vktBasicDrawTests.hpp 34 vktBasicDrawTests.cpp 35 vktDrawDifferingInterpolationTests.hpp 36 vktDrawDifferingInterpolationTests.cpp 37) 38 39set(DEQP_VK_DRAW_LIBS 40 tcutil 41 vkutil 42) 43 44PCH(DEQP_VK_DRAW_SRCS ../pch.cpp) 45 46add_library(deqp-vk-draw STATIC ${DEQP_VK_DRAW_SRCS}) 47target_link_libraries(deqp-vk-draw ${DEQP_VK_DRAW_LIBS}) 48