From bba3c873b52299d9b9f5f28b7f9cf9dac79983ec Mon Sep 17 00:00:00 2001 From: maier Date: Wed, 10 Oct 2012 13:42:41 +0000 Subject: [PATCH] Bugfix git-svn-id: https://svn.dealii.org/branches/branch_cmake@27051 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/cmake/checks/check_for_compiler_bugs.cmake | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/deal.II/cmake/checks/check_for_compiler_bugs.cmake b/deal.II/cmake/checks/check_for_compiler_bugs.cmake index 99a484a5c4..5fa416e4db 100644 --- a/deal.II/cmake/checks/check_for_compiler_bugs.cmake +++ b/deal.II/cmake/checks/check_for_compiler_bugs.cmake @@ -128,12 +128,13 @@ ENDIF() # -# Disable shared libraries on cygwin targets for the moment. Shared -# libraries on Windows are a bit buggy atm. +# Disable shared libraries on CYGWIN and Windows targets for the moment. +# Our support for shared libraries on Windows is a bit buggy atm.. # # - Matthias Maier, 2012 # -IF(CMAKE_SYSTEM_NAME MATCHES "CYGWIN") +IF( CMAKE_SYSTEM_NAME MATCHES "CYGWIN" OR + CMAKE_SYSTEM_NAME MATCHES "Windows" ) MESSAGE(WARNING "\n" "BUILD_SHARED_LIBS forced to OFF\n\n" ) -- 2.39.5