Mark the graphics interop toggles as options

This allows enabling/disabling them via CMake without editing the
CMakeLists.txt file.
This commit is contained in:
Pierre Moreau
2019-04-25 22:46:44 +02:00
committed by Kévin Petit
parent c294da4de1
commit e0091e7cf6

View File

@@ -40,9 +40,9 @@ endif(MSVC90)
#-----------------------------------------------------------
# Default Configurable Test Set
#-----------------------------------------------------------
set(D3D10_IS_SUPPORTED)
set(D3D11_IS_SUPPORTED)
set(GL_IS_SUPPORTED)
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)
#-----------------------------------------------------------