From: Matthias Maier Date: Thu, 6 Aug 2015 21:43:02 +0000 (-0500) Subject: CMake: Do not automatically include testsuite subproject on Windows X-Git-Tag: v8.4.0-rc2~657^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1295%2Fhead;p=dealii.git CMake: Do not automatically include testsuite subproject on Windows --- diff --git a/CMakeLists.txt b/CMakeLists.txt index b425ee1f48..375ee33e1c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -152,7 +152,8 @@ ADD_SUBDIRECTORY(cmake/config) # has to be included after source ADD_SUBDIRECTORY(contrib) # has to be included after source ADD_SUBDIRECTORY(examples) -IF(DEAL_II_HAVE_TESTS_DIRECTORY) +# Do not automatically include the testsuite subproject on Windows. +IF(DEAL_II_HAVE_TESTS_DIRECTORY AND NOT DEAL_II_MSVC) ADD_SUBDIRECTORY(tests) ENDIF()