CMAKE: moved GNA var setting to proper place; removed find_package when build python...
[platform/upstream/dldt.git] / inference-engine / src / CMakeLists.txt
1 # Copyright (C) 2018-2019 Intel Corporation
2 # SPDX-License-Identifier: Apache-2.0
3 #
4
5 ####################################
6 ## All next project will use C++11
7 set (CMAKE_CXX_STANDARD 11)
8 set (CMAKE_CXX_STANDARD_REQUIRED ON)
9 ####################################
10
11 if(ENABLE_MKL_DNN)
12     add_subdirectory(mkldnn_plugin)
13 endif()
14
15 if(ENABLE_CLDNN)
16     add_subdirectory(cldnn_engine)
17 endif()
18
19 if(ENABLE_VPU)
20   add_subdirectory(vpu)
21 endif()
22
23 if (ENABLE_GNA)
24     add_subdirectory(gna_plugin)
25 endif()
26
27 add_subdirectory(hetero_plugin)
28
29 add_subdirectory(inference_engine)
30
31 add_subdirectory(preprocessing)