diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index e96591e7a..a66f2f150 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -62,7 +62,11 @@ function(olive_add_test GROUP NAME SOURCE) PRIVATE ${OLIVE_COMPILE_OPTIONS} ) - add_test("OliveLib.Tests.${NAME}" ${NAME}) + if (MSVC) + add_test("Olive.${GROUP}.${NAME}" ${NAME}) + else() + add_test(${NAME} ${NAME}) +endif() endfunction() add_subdirectory(compositing)