From: Alexey Suhov Date: Thu, 24 Oct 2019 14:39:17 +0000 (+0300) Subject: turned off cpplint by default X-Git-Tag: submit/tizen/20191217.023013~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1798ac0d26d60c000c45c7d3614160d8f7f40925;p=platform%2Fupstream%2Fdldt.git turned off cpplint by default --- diff --git a/inference-engine/cmake/features.cmake b/inference-engine/cmake/features.cmake index 2d7c827..2c6f7aa 100644 --- a/inference-engine/cmake/features.cmake +++ b/inference-engine/cmake/features.cmake @@ -112,14 +112,14 @@ if (UNIX AND NOT APPLE AND CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSIO endif() if (UNIX AND NOT APPLE) - ie_option(ENABLE_CPPLINT "Enable cpplint checks during the build" ON) + ie_option(ENABLE_CPPLINT "Enable cpplint checks during the build" OFF) ie_option(ENABLE_CPPLINT_REPORT "Build cpplint report instead of failing the build" OFF) else() set(ENABLE_CPPLINT OFF) endif() if (UNIX AND NOT APPLE AND CMAKE_VERSION VERSION_GREATER_EQUAL 3.10) - ie_option(ENABLE_CPPCHECK "Enable cppcheck during the build" ON) + ie_option(ENABLE_CPPCHECK "Enable cppcheck during the build" OFF) else() set(ENABLE_CPPCHECK OFF) endif()