From: maier Date: Wed, 10 Oct 2012 13:42:41 +0000 (+0000) Subject: Bugfix X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bba3c873b52299d9b9f5f28b7f9cf9dac79983ec;p=dealii-svn.git Bugfix git-svn-id: https://svn.dealii.org/branches/branch_cmake@27051 0785d39b-7218-0410-832d-ea1e28bc413d --- 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" )