diff --git a/Source/UnitTests/VideoCommon/CMakeLists.txt b/Source/UnitTests/VideoCommon/CMakeLists.txt index b5198536ed..9c1b32b595 100644 --- a/Source/UnitTests/VideoCommon/CMakeLists.txt +++ b/Source/UnitTests/VideoCommon/CMakeLists.txt @@ -1 +1,4 @@ -add_dolphin_test(VertexLoaderTest VertexLoaderTest.cpp) +# This test currently doesn't link correctly when EGL is enabled due to issues with the GLInterface design +if(NOT USE_EGL) + add_dolphin_test(VertexLoaderTest VertexLoaderTest.cpp) +endif()