# HG changeset patch
# User Akos Ladanyi <ladanyi@tmit.bme.hu>
# Date 1243509110 -3600
# Node ID da70af8844b94b631d8334fa5b89c2e3db5af4f4
# Parent  926c47568a563c11643a5ba30f4dc2c28624b361
Suppress MSVC warnings using pragmas (#295)

diff -r 926c47568a56 -r da70af8844b9 CMakeLists.txt
--- a/CMakeLists.txt	Wed May 13 10:42:26 2009 +0200
+++ b/CMakeLists.txt	Thu May 28 12:11:50 2009 +0100
@@ -17,16 +17,6 @@
 FIND_PACKAGE(CPLEX)
 FIND_PACKAGE(COIN)
 
-IF(MSVC)
-  SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /wd4250 /wd4355 /wd4503 /wd4800 /wd4996")
-# Suppressed warnings:
-# C4250: 'class1' : inherits 'class2::member' via dominance
-# C4355: 'this' : used in base member initializer list
-# C4503: 'function' : decorated name length exceeded, name was truncated
-# C4800: 'type' : forcing value to bool 'true' or 'false' (performance warning)
-# C4996: 'function': was declared deprecated
-ENDIF(MSVC)
-
 INCLUDE(CheckTypeSize)
 CHECK_TYPE_SIZE("long long" LEMON_LONG_LONG)
 
diff -r 926c47568a56 -r da70af8844b9 lemon/core.h
--- a/lemon/core.h	Wed May 13 10:42:26 2009 +0200
+++ b/lemon/core.h	Thu May 28 12:11:50 2009 +0100
@@ -27,6 +27,16 @@
 #include <lemon/bits/traits.h>
 #include <lemon/assert.h>
 
+// Disable the following warnings when compiling with MSVC:
+// C4250: 'class1' : inherits 'class2::member' via dominance
+// C4355: 'this' : used in base member initializer list
+// C4503: 'function' : decorated name length exceeded, name was truncated
+// C4800: 'type' : forcing value to bool 'true' or 'false' (performance warning)
+// C4996: 'function': was declared deprecated
+#ifdef _MSC_VER
+#pragma warning( disable : 4250 4355 4503 4800 4996 )
+#endif
+
 ///\file
 ///\brief LEMON core utilities.
 ///