Commit 669bee86 authored by Dmitry Kurtaev's avatar Dmitry Kurtaev Committed by openvino-pushbot

Add a section of how to link IE with CMake project (#99)

parent 17e66dc5
Pipeline #346 failed with stages
...@@ -28,6 +28,7 @@ The software was validated on: ...@@ -28,6 +28,7 @@ The software was validated on:
### Build Steps ### Build Steps
1. Clone submodules: 1. Clone submodules:
```sh ```sh
cd dldt/inference-engine
git submodule init git submodule init
git submodule update --recursive git submodule update --recursive
``` ```
...@@ -52,6 +53,24 @@ You can use the following additional build options: ...@@ -52,6 +53,24 @@ You can use the following additional build options:
- To switch on/off the CPU and GPU plugins, use `cmake` options `-DENABLE_MKL_DNN=ON/OFF` and `-DENABLE_CLDNN=ON/OFF`. - To switch on/off the CPU and GPU plugins, use `cmake` options `-DENABLE_MKL_DNN=ON/OFF` and `-DENABLE_CLDNN=ON/OFF`.
5. Adding to your project
For CMake projects, set an environment variable `InferenceEngine_DIR`:
```sh
export InferenceEngine_DIR=/path/to/dldt/inference-engine/build/
```
Then you can find Inference Engine by `find_package`:
```cmake
find_package(InferenceEngine)
include_directories(${InferenceEngine_INCLUDE_DIRS})
target_link_libraries(${PROJECT_NAME} ${InferenceEngine_LIBRARIES} dl)
```
## Build on Windows\* Systems: ## Build on Windows\* Systems:
The software was validated on: The software was validated on:
......
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