From 4221ae1d643a86e3d0574c9e70867d3b209f49ed Mon Sep 17 00:00:00 2001 From: Alexander Smorkalov Date: Tue, 9 Apr 2024 12:57:23 +0300 Subject: [PATCH] Supress build warnings on Win32 for ARM. --- modules/gapi/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/gapi/CMakeLists.txt b/modules/gapi/CMakeLists.txt index cd64a9ee28..f18290ca7d 100644 --- a/modules/gapi/CMakeLists.txt +++ b/modules/gapi/CMakeLists.txt @@ -41,7 +41,7 @@ if(MSVC) # and IE deprecated code warning C4996 ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4503 /wd4996) endif() - if(MSVC_VERSION LESS 1920) # MSVS 2015/2017 + if((MSVC_VERSION LESS 1920) OR ARM OR AARCH64) # MSVS 2015/2017 on x86 and ARM ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4702) # 'unreachable code' endif() endif()