From 7f8aeb61977e1da805bd31721472d0aaeeb2e815 Mon Sep 17 00:00:00 2001 From: Mathieu Westphal Date: Sun, 8 Dec 2024 11:09:37 +0100 Subject: [PATCH] SDKTests: Fix invalid property setting on TestSDKInteractorCallback (#1768) --- library/testing/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/testing/CMakeLists.txt b/library/testing/CMakeLists.txt index fbe988fca8..de42c74dfd 100644 --- a/library/testing/CMakeLists.txt +++ b/library/testing/CMakeLists.txt @@ -155,7 +155,7 @@ if(F3D_MODULE_UI AND VTK_VERSION VERSION_GREATER_EQUAL 9.2.20221220) endif() endif() -if(NOT F3D_TESTING_ENABLE_LONG_TIMEOUT_TESTS) +if(F3D_MODULE_UI AND NOT F3D_TESTING_ENABLE_LONG_TIMEOUT_TESTS) set_tests_properties(libf3d::TestSDKInteractorCallBack PROPERTIES DISABLED ON) endif()