We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 86e0bc2 commit 87e3901Copy full SHA for 87e3901
CMakeLists.txt
@@ -62,6 +62,11 @@ ENDIF("${isSystemDir}" STREQUAL "-1")
62
add_subdirectory(src)
63
64
SET(INCLUDE_TESTS CACHE BOOL FALSE)
65
+if (INCLUDE_TESTS AND WIN32)
66
+ message(WARNING "Not supported on Windows due to a bug: https://gitlab.kitware.com/cmake/cmake/-/issues/22659. Testing will be disabled.")
67
+ SET(INCLUDE_TESTS FALSE)
68
+endif()
69
+
70
if (INCLUDE_TESTS)
71
include(CTest)
72
add_subdirectory(test)
0 commit comments