From: Alexander Alekhin Date: Mon, 28 Oct 2019 18:53:14 +0000 (+0000) Subject: gapi: fix opencv_world build X-Git-Tag: accepted/tizen/6.0/unified/20201030.111113~1^2~71^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cd6d79d10620d9f06b6ffdd5461d57487d0bcee9;p=platform%2Fupstream%2Fopencv.git gapi: fix opencv_world build --- diff --git a/modules/gapi/CMakeLists.txt b/modules/gapi/CMakeLists.txt index 233877d..aebf87c 100644 --- a/modules/gapi/CMakeLists.txt +++ b/modules/gapi/CMakeLists.txt @@ -19,6 +19,11 @@ set(the_description "OpenCV G-API Core Module") ocv_add_module(gapi opencv_imgproc) +if(MSVC) + # Disable obsollete warning C4503 popping up on MSVC <<2017 + # https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-1-c4503?view=vs-2019 + ocv_warnings_disable(CMAKE_CXX_FLAGS /wd4503) +endif() file(GLOB gapi_ext_hdrs "${CMAKE_CURRENT_LIST_DIR}/include/opencv2/*.hpp" @@ -132,11 +137,5 @@ if(TARGET opencv_test_gapi) target_link_libraries(opencv_test_gapi PRIVATE ade) endif() -if(MSVC) - # Disable obsollete warning C4503 popping up on MSVC <<2017 - # https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-1-c4503?view=vs-2019 - set_target_properties(${the_module} PROPERTIES COMPILE_FLAGS "/wd4503") -endif() - ocv_add_perf_tests() ocv_add_samples()