mirror of
https://github.com/KhronosGroup/OpenCL-CTS.git
synced 2026-03-19 06:09:01 +00:00
Add D3D10 and D3D11 tests as well as enabling toggle
This commit is contained in:
committed by
Kévin Petit
parent
ac0b784759
commit
6d8a633bf0
@@ -1,5 +1,7 @@
|
||||
cmake_minimum_required(VERSION 3.0)
|
||||
|
||||
option(D3D10_IS_SUPPORTED "Run DirectX 10 interop tests" OFF)
|
||||
option(D3D11_IS_SUPPORTED "Run DirectX 11 interop tests" OFF)
|
||||
option(GL_IS_SUPPORTED "Run OpenGL interop tests" OFF)
|
||||
|
||||
if(MSVC)
|
||||
@@ -48,6 +50,12 @@ add_subdirectory(computeinfo)
|
||||
add_subdirectory(contractions)
|
||||
add_subdirectory(conversions)
|
||||
add_subdirectory(device_partition)
|
||||
if(D3D10_IS_SUPPORTED)
|
||||
add_subdirectory(d3d10)
|
||||
endif(D3D10_IS_SUPPORTED)
|
||||
if(D3D11_IS_SUPPORTED)
|
||||
add_subdirectory(d3d11)
|
||||
endif(D3D11_IS_SUPPORTED)
|
||||
add_subdirectory(events)
|
||||
add_subdirectory(geometrics)
|
||||
if(GL_IS_SUPPORTED)
|
||||
|
||||
Reference in New Issue
Block a user