[Dist/Debian] Prepare for GCC >= 10
[platform/upstream/dldt.git] / inference-engine / tools / CMakeLists.txt
1 # Copyright (C) 2018-2019 Intel Corporation
2
3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at
6
7 #      http://www.apache.org/licenses/LICENSE-2.0
8
9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS,
11 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 # See the License for the specific language governing permissions and
13 # limitations under the License.
14
15 ####################################
16 ## to use C++11
17 set (CMAKE_CXX_STANDARD 11)
18 set (CMAKE_CXX_STANDARD_REQUIRED ON)
19 if (NOT("${CMAKE_CXX_COMPILER_ID}" STREQUAL "Intel"))
20     set (CMAKE_CXX_FLAGS "-std=c++11 ${CMAKE_CXX_FLAGS}")
21 endif()
22 ####################################
23
24 if (WIN32)
25     # add_compile_options("/WX")
26 else()
27     add_compile_options("-Werror")
28 endif()
29
30 if (ENABLE_OPENCV)
31     add_subdirectory(calibration_tool/statistics_collector)
32 endif()
33
34 add_subdirectory(vpu)