Bug 14084 - Object Tracker, Image, Generic layers
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c5a4075..1697736 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -46,19 +46,16 @@
     set(PYTHON_CMD "py")
 endif()
 
-option(BUILD_TESTS "Build tests" ON)
+option(BUILD_TESTS "Build tests" OFF)
 
 # loader: Generic VULKAN ICD loader
 # icd: Device dependent (DD) VULKAN components
 # tests: VULKAN tests
 add_subdirectory(loader)
 add_subdirectory(icd)
-#if(NOT WIN32)
-#    # TODO: Tests don't build on Windows 
-#    if(BUILD_TESTS)
-#        add_subdirectory(tests)
-#    endif()
-#endif()
+if(BUILD_TESTS)
+    add_subdirectory(tests)
+endif()
 add_subdirectory(layers)
 add_subdirectory(demos)
 #add_subdirectory(tools/glave)