From: Peter Kümmel Date: Sat, 5 Jul 2008 09:50:29 +0000 (+0000) Subject: disable warning for msvc6 infected developers (scope of for(...,,) declarartions) X-Git-Tag: 1.6.10~4221 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=bdde87d39fb540319bad65d05174bf7552014aa9;p=features.git disable warning for msvc6 infected developers (scope of for(...,,) declarartions) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@25455 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/development/cmake/CMakeLists.txt b/development/cmake/CMakeLists.txt index f70a052546..101580ce0d 100644 --- a/development/cmake/CMakeLists.txt +++ b/development/cmake/CMakeLists.txt @@ -267,7 +267,7 @@ if(MSVC) # add here warnings which should produce an error /weXXXX set(MSVC_W_ERROR "/we4101 /we4189") # add here warnings which should be disabled /wdXXXX - set(MSVC_W_DISABLE "/wd4355 /wd4800 /wd4996 /wd4311 /wd4312 /wd4505 /wd4267 /wd4512 /wd4245 /wd4127 /wd4180") + set(MSVC_W_DISABLE "/wd4288 /wd4355 /wd4800 /wd4996 /wd4311 /wd4312 /wd4505 /wd4267 /wd4512 /wd4245 /wd4127 /wd4180") set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} /Wp64 ${MSVC_W_ERROR} ${MSVC_W_DISABLE}") @@ -285,7 +285,7 @@ if(MSVC) # add here warnings which should produce an error /weXXXX set(MSVC_W_ERROR "/we4101 /we4189") # add here warnings which should be disabled /wdXXXX - set(MSVC_W_DISABLE "/wd4355 /wd4800 /wd4996 /wd4267 /wd4180") + set(MSVC_W_DISABLE "/wd4288 /wd4355 /wd4800 /wd4996 /wd4267 /wd4180") set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} ${MSVC_W_ERROR} ${MSVC_W_DISABLE}")