Commit 1798ac0d authored by Alexey Suhov's avatar Alexey Suhov

turned off cpplint by default

parent 1c794d97
...@@ -112,14 +112,14 @@ if (UNIX AND NOT APPLE AND CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSIO ...@@ -112,14 +112,14 @@ if (UNIX AND NOT APPLE AND CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSIO
endif() endif()
if (UNIX AND NOT APPLE) 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) ie_option(ENABLE_CPPLINT_REPORT "Build cpplint report instead of failing the build" OFF)
else() else()
set(ENABLE_CPPLINT OFF) set(ENABLE_CPPLINT OFF)
endif() endif()
if (UNIX AND NOT APPLE AND CMAKE_VERSION VERSION_GREATER_EQUAL 3.10) 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() else()
set(ENABLE_CPPCHECK OFF) set(ENABLE_CPPCHECK OFF)
endif() endif()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment