CMAKE: removed conditional compilation for C API (#861)

This commit is contained in:
Ilya Lavrenov
2020-06-15 12:39:45 +03:00
committed by GitHub
parent 88e14c9dd6
commit bb265565c7
2 changed files with 1 additions and 5 deletions

View File

@@ -96,9 +96,7 @@ if (ENABLE_PYTHON)
add_subdirectory(ie_bridges/python)
endif()
if (ENABLE_C)
add_subdirectory(ie_bridges/c)
endif()
add_subdirectory(ie_bridges/c)
add_cpplint_report_target()

View File

@@ -98,8 +98,6 @@ ie_option (ENABLE_OPENCV "enables OpenCV" ON)
ie_option (ENABLE_PYTHON "enables ie python bridge build" OFF)
ie_option (ENABLE_C "enables ie c bridge build" ON)
ie_dependent_option(ENABLE_CPPLINT "Enable cpplint checks during the build" ON "UNIX;NOT ANDROID" OFF)
ie_dependent_option(ENABLE_CPPLINT_REPORT "Build cpplint report instead of failing the build" OFF "ENABLE_CPPLINT" OFF)